Changeset 365 for trunk/statistic.php
- Timestamp:
- Mar 9, 2010, 11:29:05 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/statistic.php
r328 r365 22 22 <div>Počet stáhnutí přeložených textů v SQL souboru: <strong>'); 23 23 24 $ID = $Database->SQLCommand('SELECT count(distinct( IP)) FROM log WHERE type= 2');24 $ID = $Database->SQLCommand('SELECT count(distinct(`IP`)) FROM `Log` WHERE `Type` = 2'); 25 25 $Line = mysql_fetch_row($ID); 26 26 echo($Line[0]); … … 29 29 <div>Počet stáhnutí: <strong>'); 30 30 31 $ID = $Database->SQLCommand('SELECT count(distinct( IP)) FROM log WHERE type= 0');31 $ID = $Database->SQLCommand('SELECT count(distinct(`IP`)) FROM `Log` WHERE `Type` = 0'); 32 32 $Line = mysql_fetch_row($ID); 33 33 echo($Line[0]);
Note:
See TracChangeset
for help on using the changeset viewer.