Hey ppl. Well this is my first post on this forum! Lets get to the point... A few days ago I decided that I wanted a Login system for my site (www.clanph.net) using PHP to drive it. So I poped down to my local book store and bought a PHP book. Called: Dreamweaver MX: PHP Web Developemt. I made the appropriate pages. But ive come aross a problem on the create_users.php page. Everytime I try to view it I get a "parse error on line 47" Ive tried looking at link 47 and comparing it with the book and theres nothing wrong! but IE6 thinks there is!
Here is the code:
}
// Insert Data
$myquery = "INSERT INTO users ( firstName, lastName, username, password, "
line 47-> $myquery .= "status) VALUES ('$firstName', '$lastName', '$username', "
$myquery .= " '$password', '$status')";
$result = mysql_query($myquery, $mysql);
if (!$result)
{
www.clanph.net/admin/create_users.php to see the error for yourself! It does look wrong to me but I don't know where the error is! can someone pls help? thx.