[Openfirst-cvscommit] logger index.php,1.7,1.8
Brought to you by:
xtimg
From: <dav...@us...> - 2003-11-02 15:37:10
|
Update of /cvsroot/openfirst/logger In directory sc8-pr-cvs1:/tmp/cvs-serv22968 Modified Files: index.php Log Message: Edited the way the log values are displayed. Index: index.php =================================================================== RCS file: /cvsroot/openfirst/logger/index.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** index.php 23 Oct 2003 22:09:10 -0000 1.7 --- index.php 2 Nov 2003 15:37:07 -0000 1.8 *************** *** 51,55 **** ! $query = ofirst_dbquery("SELECT * FROM ofirst_logger GROUP BY IPAddress LIMIT $min,$max"); $amount = ofirst_dbnum_rows($query); --- 51,55 ---- ! $query = ofirst_dbquery("SELECT * FROM ofirst_logger GROUP BY `IPAddress` ORDER BY `ID` DESC LIMIT $min,$max"); $amount = ofirst_dbnum_rows($query); *************** *** 66,72 **** </form></p> ! <div align="center">This page previews grouped unique visitors. If you wish to view the exact location that the user has visited click<br> ! the track button below: </div> --- 66,73 ---- </form></p> ! <div align="center">This page displays grouped unique visitors. If you wish to view the exact location that the user has visited click<br> ! the track button below. Note that the below logs are listed in descending order ! with the most recent at the top. </div> |