Site Tasarım : Öğr.Gör.Mehmet ARAS - Site Güncelleme : Öğr.Gör.Mehmet ARAS Öğr.Gör.Gülseren KOÇ //Eğer dizinde dosya var ise if(file_exists("kayit.dat")) { // r sadece okumak için dosyayı açar $exist_file = fopen("kayit.dat", "r"); // 1 byte lık veri okuyabiliriz ve değişkenimize atanıyor $new_count = fgets($exist_file, 255); $new_count++;//dosyadaki değişken 1 artırılıyor fclose($exist_file);//Dosyamızı kapattık print("$new_count kişi bu sayfayı izledi"); //Ekrana ziyaretçi sayısını yazdırıyoruz $exist_count = fopen("kayit.dat", "w"); //w sadece dosyaya yazmak için dosyayı açar fputs($exist_count, $new_count); fclose($exist_count); } else //dizinde dosya yok ise ?> |