Ошибка анализа: синтаксическая ошибка, неожиданная '(' in D:\xampp3\xampp\htdocs\contact.php в строке 10
У меня проблема с моим кодом здесь.
Я делаю простой "Свяжитесь с нами" через html/PHP.
Но я новичок во всем этом и изучаю его от шага к шагу. Вот почему я пришел сюда.
Я получаю эту ошибку: Ошибка анализа: синтаксическая ошибка, неожиданный '(' in D:\xampp3\xampp\htdocs\contact.php в строке 10 и вот код:
<i><?php
include 'core/init.php';
include 'includes/overall/header.php';
if (empty($_POST) === false) {
$name = $_POST ['name'];
$email = $_POST ['email'];
$message = $_POST ['message'];
if (empty($name) === true || (empty( ($email) === true || (empty($message === true) {
$errors[] = 'Name, email and message are required!';
} else {
}
?></i>
Ответы
Ответ 1
Попробуйте следующее:
<i><?php
include 'core/init.php';
include 'includes/overall/header.php';
if (empty($_POST) === false) {
$name = $_POST ['name'];
$email = $_POST ['email'];
$message = $_POST ['message'];
if (empty($name) === true || empty($email) === true || empty($message) === true) {
$errors[] = 'Name, email and message are required!';
} else {
}
// The else above is actually not needed thus you could remove it.
}
?></i>