|
| HOMEPAGE | INDICE FORUM | REGOLAMENTO | ::. | NEI PREFERITI | .:: | RSS Forum | RSS News | NEWS web | NEWS software | |
| PUBBLICITA' | | | ARTICOLI | WIN XP | VISTA | WIN 7 | REGISTRI | SOFTWARE | MANUALI | RECENSIONI | LINUX | HUMOR | HARDWARE | DOWNLOAD | | | CERCA nel FORUM » | |
27-04-2005, 19.11.52 | #1 |
Hero Member
Registrato: 11-02-2004
Loc.: Latina
Messaggi: 506
|
Problema script php del contatore
ho un contatore di utenti online (non preciso, è un esperimento) ma non mi funzion correttamente. Qualcuno magari lo può provare e dirmi dove ho toppato? tnks [PHP] <? session_name("COUNT"); session_start(); error_reporting(E_ALL); $SID = session_id(); if($_SESSION['contatore'] !== true) { $fp = @fopen("log.txt", "a"); fwrite($fp, $SID."|".time()."\n"); fclose($fp); $_SESSION['contatore'] = true; } unset($fp); if(filesize("log.txt") !== 0) { $fp = @fopen("log.txt", "r"); $content = fread($fp, filesize("log.txt")); fclose($fp); $content = explode("\n", $content); $n = 0; $u = 0; $c = count($content); while($n !== $c) { $u++; $content[$n] = explode("|", $content[$n]); $n++; } $u--; } unset($fp); if(isset($content)) { $fp = @fopen("log.txt", "w"); $n = 0; $c--; while($n !== $c) { $time = time(); $sottr = $time-$content[$n][1]; if($sottr <= 30) { fwrite($fp, $content[$n][0]."|".$content[$n][1]."\n"); } if($SID === $content[$n][0]) { fwrite($fp, $content[$n][0]."|".$content[$n][1]."\n"); } $n++; } fclose($fp); echo "Utenti: $u"; } ?> [/PHP]
___________________________________
'Considerate la vostra semenza: fatti non foste a viver come bruti, ma per seguir virtute e conoscenza' Dante Web surfing with Mozilla Firefox . Contribuisci anche tu al progetto Distributed Computing Projects contro il cancro |
Utenti attualmente attivi che stanno leggendo questa discussione: 1 (0 utenti e 1 ospiti) | |
Strumenti discussione | |
|
|
Discussioni simili | ||||
Discussione | Autore discussione | Forum | Risposte | Ultimo messaggio |
Easy HTML To Any Script Converter 3.0.0 | Thor | Archivio News Software | 0 | 22-03-2007 17.58.44 |
Script (CMD) che possa 'contenere' un exe | retalv | Programmazione | 14 | 21-02-2007 18.30.56 |
run script php | uluzzu | Programmazione | 9 | 17-07-2006 17.23.23 |
[scheda wireless] problema stranissimo!! | taniservice | Hardware e Overclock | 2 | 21-06-2006 13.00.39 |
Apache 2 e PHP 5 | realtebo | Internet e Reti locali | 2 | 07-09-2004 08.16.14 |