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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.