Login   Register  
PHP Classes
elePHPant
Icontem

File: view_active.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of rm  >  PHP MySQL Login 5 levels of Hierarchy  >  view_active.php  >  Download  
File: view_active.php
Role: Example script
Content type: text/plain
Description: view active
Class: PHP MySQL Login 5 levels of Hierarchy
Manage site users within 5 levels of hierarchy
Author: By
Last change:
Date: 2009-08-10 03:39
Size: 784 bytes
 

Contents

Class file image Download
<?php
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);
/* Error occurred, return given name by default */
$num_rows mysql_numrows($result);
if(!
$result || ($num_rows 0)){
   echo 
"Error displaying info";
}
else if(
$num_rows 0){
   
/* Display active users, with link to their info */
   
echo "<table align=\"left\" border=\"1\" 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=\"userinfo.php?user=$uname\">$uname</a> / ";
   }
   echo 
"</font></td></tr></table><br>\n";
}
?>