Answer the question
In order to leave comments, you need to log in
Why does the "unexpected end of file" error occur?
Mistake:
Parse error: syntax error, unexpected end of file in /storage/ssd3/670/13599670/public_html/form.php on line 19
<?php
/* Здесь проверяется существование переменных */
if (isset($_POST['phone'])) {$phone = $_POST['phone'];}
if (isset($_POST['name'])) {$name = $_POST['name'];}
/* Сюда впишите свою эл. почту */
$address = "[email protected]";
/* А здесь прописывается текст сообщения, \n - перенос строки */
$mes = "Тема: Заказ обратного звонка!\nТелефон: $phone\nИмя: $name\";
/* А эта функция как раз занимается отправкой письма на указанный вами email */
$sub='Заказ'; //сабж
$email='Заказ доска 3 в 1'; // от кого
$send = mail ($address,$sub,$mes,"Content-type:text/plain charset = utf-8\r\nFrom:$email");
ini_set('short_open_tag', 'On');
header('Refresh: 3; URL=index.html');
?>
Answer the question
In order to leave comments, you need to log in
Install for example phpstorm and there the error will immediately appear. In your case, you escaped the quote\"
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question