Jump to content

[SOLVED] Quick Question


Lamez

Recommended Posts

what does this mean?

 

Parse error: syntax error, unexpected T_VARIABLE, expecting ',' or ';' in /mounted-storage/home48c/sub007/sc33591-LWQU/www/user/userinfo.php on line 47

 

I know it is saying I am missing a ; or a , but where?

here is line 47, any help?

$query = mysql_query("SELECT u.username FROM users u INNER JOIN active_users a ON a.username=u.username WHERE a.timestamp < (NOW() - INTERVAL 5 MINUTE) AND u.username=$req_user_info['username']")or die(mysql_error());

Link to comment
https://forums.phpfreaks.com/topic/82134-solved-quick-question/
Share on other sites

Change it to this

 

<?php

$query = mysql_query("SELECT u.username FROM users u INNER JOIN active_users a ON a.username=u.username WHERE a.timestamp < (NOW() - INTERVAL 5 MINUTE) AND u.username='{$req_user_info['username']}'")or die(mysql_error());

?>

Link to comment
https://forums.phpfreaks.com/topic/82134-solved-quick-question/#findComment-417366
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.