papaface Posted December 27, 2007 Share Posted December 27, 2007 Hello, I seem to be having an influx of syntax errors that I can't seem to explain. I've been looking at this one for a while now and I still can't see it ??? Any ideas? (I've marked the line that triggers the error. <?php include(CreatePath("includes/memberfunctions.php")); if ($_mem->CheckUsername($_POST['username'])) { if ($_mem->CheckPasswords($_POST['password'],$_POST['repassword'])) {//LINE ERROR if ($_mem->CheckEmailAddress($_POST['email']) { if ($_mem->Register()) { echo "done"; } else { echo "not registered"; } } else { echo "email not entered"; } } else { echo "passwords do not match"; } } else { echo "username taken"; } ?> Help would be greatly appreciated Quote Link to comment https://forums.phpfreaks.com/topic/83409-solved-syntax-error-unexpected/ Share on other sites More sharing options...
marcus Posted December 27, 2007 Share Posted December 27, 2007 <?php include (CreatePath("includes/memberfunctions.php")); if ($_mem->CheckUsername($_POST['username'])) { if ($_mem->CheckPasswords($_POST['password'], $_POST['repassword'])) { //LINE ERROR if ($_mem->CheckEmailAddress($_POST['email'])) { if ($_mem->Register()) { echo "done"; } else { echo "not registered"; } } else { echo "email not entered"; } } else { echo "passwords do not match"; } } else { echo "username taken"; } ?> You didn't end one of your if statements. Quote Link to comment https://forums.phpfreaks.com/topic/83409-solved-syntax-error-unexpected/#findComment-424342 Share on other sites More sharing options...
papaface Posted December 27, 2007 Author Share Posted December 27, 2007 Thanks for uber quick reply, but which one didn't I end, because I seriously can't see it lol. Quote Link to comment https://forums.phpfreaks.com/topic/83409-solved-syntax-error-unexpected/#findComment-424347 Share on other sites More sharing options...
marcus Posted December 27, 2007 Share Posted December 27, 2007 if ($_mem->CheckEmailAddress($_POST['email']) that one. Quote Link to comment https://forums.phpfreaks.com/topic/83409-solved-syntax-error-unexpected/#findComment-424349 Share on other sites More sharing options...
papaface Posted December 27, 2007 Author Share Posted December 27, 2007 Doh! Thanks lol. Quote Link to comment https://forums.phpfreaks.com/topic/83409-solved-syntax-error-unexpected/#findComment-424350 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.