who_online.php changes
Produced: 8/25/2007 12:15:35 PM
   
Mode:  Differences with Context  
   
Left file: D:\phpfootball20\who_online.php     Right file: D:\phpfootball20old\who_online.php  
15 //* Show current game status from currentscores table.                      * = 15 //* Show current game status from currentscores table.                      *
16 //***************************************************************************   16 //***************************************************************************
17 $subtitle="Who's Online";   17 $subtitle="Who's Online";
18 require("protect.php");   18 require("protect.php");
19 require("header.php");   19 require("header.php");
20 $football->WhoOnlineIdle();   20 $football->WhoOnlineIdle();
21 $action=$_GET['action']; +-    
22   = 21  
23 if ($action == "C") { +-    
24   $sql="delete from ".$football->prefix."online";  // clear all online enties      
25   $rs=$football->dbQuery($sql);      
26   }      
27 $sql="select * from ".$football->prefix."online"; = 22 $sql="select * from ".$football->prefix."online";
28 $rs=$football->dbQuery($sql);   23 $rs=$football->dbQuery($sql);
29 $n=0;   24 $n=0;
30 while($row = mysql_fetch_object($rs))   25 while($row = mysql_fetch_object($rs))
31   {   26   {
32    $userd=$row->user;   27    $userd=$row->user;
 
69 <? = 64 <?
70 }   65 }
71 ?>   66 ?>
72 </table>   67 </table>
73 <b>Click IP address for additional information.</b><br><br>   68 <b>Click IP address for additional information.</b><br><br>
74 <button onClick="window.location='who_online.php'">Press To Refresh</button>   69 <button onClick="window.location='who_online.php'">Press To Refresh</button>
75 <button onClick="window.location='who_online.php?action=C'">Press To Clear All Entries</button> +-    
76 <?php = 70 <?php
77 //***************************************************************************   71 //***************************************************************************
78 require("footer.php");   72 require("footer.php");
79 ?>   73 ?>
80     74  
81     75  
82     76