Hey Everyone-
maybe you can help with a quick problem. I am getting this error from PHP:
syntax error unexpected T_IF on line 7. I cant figure it out. Line 7 is the second if statement.
if ($_POST['_submit_check'] {
if ($form_errors = validate_form()) {
show_form($form_errors);
} else {
process_form();
}
} else {
show_form();
}
Thanks a lot!