Jump to content

[SOLVED] Syntax error, unexpected '{'


papaface

Recommended Posts

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 :D

Link to comment
https://forums.phpfreaks.com/topic/83409-solved-syntax-error-unexpected/
Share on other sites

<?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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.