Nieuw lid |
|
Ik gebruik het volgende script, normaal werkt het maar nu niet weet iemand a.u.b. wat hier niet aan klopt.
<code>
<center><font color="#FFFFFF" size="2">U bent<br>
bezoek(st)er<br><?
$fontface="Verdana";
$fontcolor="#FFFFFF";
$fontsize="2";
include ("counter.dat");
$a++;
$file=fopen ("counter.dat","w");
fputs($file, "<");
fputs($file, "? $");
fputs($file, "a=$a ?");
fputs($file, ">");
fclose ($file);
echo "<font face='$fontface' color='$fontcolor' size='$fontsize'>$a </font>";
?>
</code>
Ik krijg dan op mijn scherm het volgende.
U bent
bezoek(st)er
Warning: fopen(counter.dat): failed to open stream: Permission denied in E:\webhosting\dedienst\home\a.php on line 91
Warning: fputs(): supplied argument is not a valid stream resource in E:\webhosting\dedienst\home\a.php on line 92
Warning: fputs(): supplied argument is not a valid stream resource in E:\webhosting\dedienst\home\a.php on line 93
Warning: fputs(): supplied argument is not a valid stream resource in E:\webhosting\dedienst\home\a.php on line 94
Warning: fputs(): supplied argument is not a valid stream resource in E:\webhosting\dedienst\home\a.php on line 95
Warning: fclose(): supplied argument is not a valid stream resource in E:\webhosting\dedienst\home\a.php on line 96
|