PHP ver gevorderde |
|
dit is mijn code:
<?php ob_start(); ?>
<?php
if(!isset($_COOKIE['geweest']))
{
$legen = "dagteller.txt";
$bezocht = filemtime($legen);
$datum = date ("d-m-Y", $bezocht);
$vandaag = date ("d-m-Y");
if($datum != $vandaag) {
$nieuw = fopen($legen,"w");
fclose($nieuw);
}
$file = fopen("dagteller.txt","r+");
$count = fread($file, filesize("dagteller.txt"));
fclose($file);
$count += 1;
$file = fopen("dagteller.txt","w+");
fputs($file, $count);
fclose($file);
$file = fopen("altijdbezocht.txt","r+");
$count = fread($file, filesize("altijdbezocht.txt"));
fclose($file);
$count += 1;
$file = fopen("altijdbezocht.txt","w+");
fputs($file, $count);
fclose($file);
Setcookie("geweest","ja");
header("location:index.php");
}
else
{
?>
de website weergeven
<?php
}
?>
<?php if(!isset($_COOKIE['geweest'])) { $legen = "dagteller.txt"; $datum = date ("d-m-Y", $bezocht); $vandaag = date ("d-m-Y"); if($datum != $vandaag) { $nieuw = fopen($legen,"w"); } $file = fopen("dagteller.txt","r+"); $count += 1; $file = fopen("dagteller.txt","w+"); $file = fopen("altijdbezocht.txt","r+"); $count += 1; $file = fopen("altijdbezocht.txt","w+"); } else { ?> de website weergeven <?php } ?>
op prohost.com werkt het wel en bij lycos niet |