для наших бывших соотечественников, разбросанных по разным уголкам планеты, это уникальная возможность получать объективную информацию о происходящем в Израиле и на Ближнем Востоке, смотреть лучшие российские премьеры и развлекательные программы нового сезона телеканала "Израиль плюс".
# Righto, get all the variables and stuff from the edit.me file
include ('counter/config.php');
# set a session ID
#session_start();
# This is the bit which adds to the count.txt file
if ($count_what == 'visitors') {
# First it creates a session Id for each visit so that it counts
# visits rather than how many times a page is loaded.
if (!$PHPSESSID) {
$thefile = file("counter/count.txt");
$count = implode("", $thefile);
$count++;
$myfile = fopen("counter/count.txt","w");
fputs($myfile,$count);
fclose($myfile);
}
# done
}
else {
# Else it will count every page load
$thefile = file("counter/count.txt");
$count = implode("", $thefile);
$count++;
$myfile = fopen("counter/count.txt","w");
fputs($myfile,$count);
fclose($myfile);
}
$thefile = file("counter/count.txt");
$count = implode("", $thefile);
# now print either the text version...
if ($print_what == 'text') {
print $count;
}
#else print graphics
else {
$num = strlen ($count);
$i = 0;
while ($i < $num) :
$graphic = substr ($count, $i, 1);
print "";
$i++;
endwhile;
}
?>