Ребят есть код, но показывает ошибку :
Parse error: syntax error, unexpected $end ..../write.php on line 18
Искал сначало незакрытые скобки вроде нет, символов перед ?> тоже нет.
Помогите, голову сломал уже)
<?php
session_start();
if (md5($_POST['norobot']) == $_SESSION['randomnr2']) {
// here you place code to be executed if the captcha test passes
if ($_POST['call']);
$file=fopen('file.txt','a');
fputs($file,$_POST['call']);
fputs($file,$_POST['name']);
fputs($file,$_POST['sname']."\r\n");
fclose($file);
echo 'all ok';
?>
} else {
// here you place code to be executed if the captcha test fails
echo "Code not avaible";
}
?>