Jump to content

[SOLVED] unexpected T_VARIABLE problem


RyanSF07

Recommended Posts

Hi Guys,

 

I'm getting this error:

Parse error: syntax error, unexpected T_VARIABLE on line 26

 

with this bit of code (line 26 begins with: $check2)

 

	$usercheck = $_POST[user_name];
$check = mysql_query("SELECT * FROM registered_users WHERE user_name = $usercheck") 
$check2 = mysql_num_rows($check);

//if the name exists, error
if ($check2 = 0) {
	$c = TRUE;
} else {
	$c = FALSE;
	$content .= "<p>'Sorry, that username is already in use.'</p>\n";
}

 

Later in the script I have a: if $a AND $b AND $c AND $d then do the INSERT

 

Can you help me trouble shoot this? Where is the syntax error?

 

Thank you!

Ryan

Link to comment
https://forums.phpfreaks.com/topic/59840-solved-unexpected-t_variable-problem/
Share on other sites

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.