Jump to content

[SOLVED] Users Online


iAaron

Recommended Posts

<?php

$q = mysql_query("SELECT id, username FROM online_users") or die(mysql_query());

echo "<b>Online Users</b>\n<br />";
while($row = mysql_fetch_assoc($q)) {
echo "<a href=\"profile.php?user=$row['id']\">$row['username']</a>";
}

?>

 

Try something like that :)

Link to comment
https://forums.phpfreaks.com/topic/52228-solved-users-online/#findComment-257632
Share on other sites

Ok, this is what I have.

 

<?php

$q = mysql_query("SELECT user_id, username FROM phpbb_users WHERE user_active = 0") or die(mysql_query());

echo "<b>Online Users</b>\n<br />";
while($are = mysql_fetch_assoc($q)) {
echo "<a href=\"profile.php?user=$are['user_id']\">$are['username']</a>";
}

?>

 

This is the error I am getting :

 

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/coarsefi/public_html/index.php on line 64

 

Any ideas what I'm doing wrong? This is the 2nd Time I've used PHP, so yeah...  :(

http://www.coarsefishingforums.co.uk/index.php (That is where I am hosting it)

Link to comment
https://forums.phpfreaks.com/topic/52228-solved-users-online/#findComment-257648
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.