can you give me example. what do you mean have a list populated, also
I have a online script that shows users online if this is any help..
Code:
<?
if(!defined('TBL_ACTIVE_USERS')) {
die("Error processing page");
}
$q = "SELECT username FROM ".TBL_ACTIVE_USERS
." ORDER BY timestamp DESC,username";
$result = $database->query($q);
$num_rows = mysql_numrows($result);
if(!$result || ($num_rows < 0)){
echo "Error displaying info";
}
else if($num_rows > 0){
echo "<table align=\"left\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\n";
echo "<tr><td><font size=\"2\">\n";
for($i=0; $i<$num_rows; $i++){
$uname = mysql_result($result,$i,"username");
echo "/ <a href=\"login/userinfoo.php?user=$uname\">$uname</a> ";
}
echo "</font></td></tr></table><br>\n";
}
?>
it may be to some use...
Bookmarks