I have this simple code to extract some information from the user that is logged in.
$query = mysql_query("SELECT username, website, email FROM user WHERE username = $_SESSION['username']");
... and I keep receiving this error...
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/a6551599/public_html/account.php on line 24
... so if anyone could help, it would be much appreciated!