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] Link to comment https://forums.phpfreaks.com/topic/4934-solved-parse-error-unexpected-t_encapsed_and_whitespace/ 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.. :) Link to comment https://forums.phpfreaks.com/topic/4934-solved-parse-error-unexpected-t_encapsed_and_whitespace/#findComment-17393 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 Link to comment https://forums.phpfreaks.com/topic/4934-solved-parse-error-unexpected-t_encapsed_and_whitespace/#findComment-17395 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.