Log in

View Full Version : parse error


neal
02-13-2002, 12:39 AM
<?php
include('global.php');
if ($bbuserinfo[userid]==0) {
echo "Login!"
}
else {
echo "You're already Logged in!"
}
?>

Why is that getting a parse error?

Parse error: parse error, expecting `','' or `';'' in /home/teenaged/public_html/login.php on line 5

malayneum
02-13-2002, 12:49 AM
try this
<?php

include("global.php"); // <-- just my habit to put " not '

if ($bbuserinfo[userid] == 0) {
echo "Login!"; // <-- you forgot ;
}

else {
echo "You\\'re already Logged in!"; // <-- you forgot to escape ' and forgot to add ;
}

?>

please correct me is something goes wrong.

add : my wrong .... slashes strip-off by vB

tbloom2002
02-13-2002, 12:50 AM
you need a semicolon after the echo statements... like this:


<?php
include('global.php');
if ($bbuserinfo[userid]==0) {
echo "Login!";
}
else {
echo "You're already Logged in!";
}
?>

neal
02-13-2002, 01:13 AM
ahh, thanks to you both

Admin
02-13-2002, 05:00 AM
malayneum, you don't need to escape ' when quoting the string with ", and the other way around. :)