essjay_d12 Posted March 14, 2006 Share Posted March 14, 2006 The following error appeared on the line under the error comment ... i cant see whats wrongParse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING [code]<?phpif (isset($_SESSION['username'])) {//open connection$conn = mysql_connect("localhost", "admin", "adm1n");mysql_select_db("project",$conn);//error on next line$query = "SELECT F_NAME, L_NAME FROM users WHERE USERNAME = '$_SESSION['username']'";$result = mysql_query($query) or die(mysql_error());$rows = mysql_num_rows($result);while ($row = mysql_fetch_assoc($result)) { echo ($row['F_NAME']); echo " "; echo ($row['L_NAME']);}if (!isset($_SESSION['username'])) {echo "Please Sign in or ";echo "<a href=register.php>Register</a>";} ?> [/code] Quote Link to comment Share on other sites More sharing options...
shocker-z Posted March 14, 2006 Share Posted March 14, 2006 change[code]$query = "SELECT F_NAME, L_NAME FROM users WHERE USERNAME = '$_SESSION['username']'";[/code]to[code]$query = "SELECT F_NAME, L_NAME FROM users WHERE USERNAME = '$_SESSION[username]'";[/code]that should do the trick.. :) Quote Link to comment Share on other sites More sharing options...
essjay_d12 Posted March 14, 2006 Author Share Posted March 14, 2006 Now it says that on the last line of the file i have the following error...Parse error: parse error, unexpected $end but there is nothing on the last line!!Found ithad missing bracket thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.