Закрыто. Этот вопрос не воспроизводится или был вызван опечатками. В настоящее время ответы не принимаются.
Решение проблемы
Причина вашего «неожиданного конца строки» заключается в том, что оператор else не закрыт.
if($statement->execute())
{
//if it has we check if a row exsists or not if it does we redirect to the index.php page.
if($statement->num_rows >0)
{
redirect_to("index.php?registered=false");
}
else {
//or if it does not exsist in the database we allow the SQL to take over an insert the data into the database.
} // needed a bracket here.
Комментариев нет:
Отправить комментарий