Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.