dean7 Posted July 12, 2009 Share Posted July 12, 2009 Hi all on my website ive got a stats bar were it shows there stats but ive got a problem. <?php include('style.css'); ?> <html> <title>My Stats</title> </html> <?php echo "Username: $logged[username]" echo "Email: $logged[email]" echo "Games Played: $logged[gameplayed]" echo "Level: $logged[level]" ?> But when i try seeing it it just give me the error code: Parse error: syntax error, unexpected T_ECHO, expecting ',' or ';' in /home/a7502957/public_html/stats.php on line 9 Anyone know why? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/165718-solved-showing-stats/ Share on other sites More sharing options...
Philip Posted July 12, 2009 Share Posted July 12, 2009 echo "Username: $logged[username]" echo "Email: $logged[email]" echo "Games Played: $logged[gameplayed]" echo "Level: $logged[level]" You're missing a semicolon on each of those statements. echo "Username: $logged[username]"; echo "Email: $logged[email]"; echo "Games Played: $logged[gameplayed]"; echo "Level: $logged[level]"; Quote Link to comment https://forums.phpfreaks.com/topic/165718-solved-showing-stats/#findComment-874179 Share on other sites More sharing options...
dean7 Posted July 12, 2009 Author Share Posted July 12, 2009 That worked but it doesnt show me the stats now Quote Link to comment https://forums.phpfreaks.com/topic/165718-solved-showing-stats/#findComment-874181 Share on other sites More sharing options...
wildteen88 Posted July 12, 2009 Share Posted July 12, 2009 That worked but it doesnt show me the stats now Which is what? Where is your variable $logged defined? Quote Link to comment https://forums.phpfreaks.com/topic/165718-solved-showing-stats/#findComment-874189 Share on other sites More sharing options...
dean7 Posted July 12, 2009 Author Share Posted July 12, 2009 That worked but it doesnt show me the stats now Which is what? Where is your variable $logged defined? sorted it now. i forgot to include the config file. Quote Link to comment https://forums.phpfreaks.com/topic/165718-solved-showing-stats/#findComment-874193 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.