ykpon
Постоялец
- Регистрация
- 8 Дек 2012
- Сообщения
- 250
- Реакции
- 150
Снова ошибка.
Parse error: syntax error, unexpected T_IF in /home/u411818652/public_html/index.php on line 3
Код:
<?php
if(isset($_POST)) {
if(!empty($_POST['text'])) {
$file = 'file.txt';
file_put_contents($file, $_POST['text'].PHP_EOL,FILE_APPEND);
}
}
?>
<!doctype html>
<html>
<head>
<title>Скрипт жи</title>
</head>
<body>
<form method="post" action="">
<input type="text" name="text"><br>
<input type="submit" value="Отправить">
</form>