Programalama > PHP

Etiketler: bugunku, toplam, hit..., wap

Ort. 0
Puan ver:
<?php 

// Designed by ademwap.com  ademwap@yahoo.com

// Don't modify the code here below 

$file="count.txt"; 
$data_oggi=date("d/m/Y"); 


// Prima volta in assoluto che si accede alla pagina 
if (!(file_exists($file))) 
{ 
$crea_file=fopen($file,"w"); 
$inizio="1". $data_oggi. "1"; 
fputs($crea_file,$inizio); 
fclose($crea_file); 
} 

else{ 
// Estrazione dati 
$dati=file($file); 
$visite_tot=$dati[0]; 
$data=chop($dati[1]); 
$visite_oggi=$dati[2]; 

$visite_tot=$visite_tot+1; 

// Controllo delle visite odierne 
if ($data_oggi==$data) 
{ $visite_oggi=$visite_oggi+1; } 
else 
{ $visite_oggi=1; } 

// Scrittura dati su file 
$scrivi_file=fopen($file,"w+"); 
$dati=$visite_tot."\n".$data_oggi."\n".$visite_oggi; 
fputs($scrivi_file,$dati); 
fclose($scrivi_file); 

// Visualizzazione dati 

$tabella .="Bugun Hit: $visite_oggi<br/>"; 
$tabella .="Toplam Hit: $visite_tot"; 

echo $tabella; 
} 
?>


Yorumlar                 Yorum Yaz
Bu hazır kod'a ilk yorumu siz yapın!
KATEGORİLER
ASP - 240
ASP.NET - 24
C# - 75
C++ - 174
CGI - 8
DELPHI - 247
FLASH - 49
HTML - 536
PASCAL - 246
PERL - 11
PHP - 160
WML - 9
XML - 2
Copyright © 2002 - 2024 Hazır Kod - Tüm Hakları Saklıdır.
Siteden yararlanırken gizlilik ilkelerini okumanızı tavsiye ederiz.
hazirkod.com bir İSOBİL projesidir.