Hallo!
Ich bin neu hier und bin in php eigendlich auch noch ein Frischling.
Also mein problem ist, dass ich einen textcounter geschrieben habe und ihn mit
<!--#exec cgi="http://beispielserver/counter/?id=123"-->
in eine html datei einbinden möchte. Aber er wird nicht ausgeführt. Woran kann das liegen? Hier der quellcode vom Counter:
$filename=$_GET["id"];
if (file_exists($_GET["id"]))
{
$datei=fopen($filename, "r+");
$counterstand=fgets($datei, 10);
if ($counterstand == "")
{
$counterstand=0;
}
$counterstand++;
echo $counterstand;
rewind($datei);
fwrite($datei, $counterstand);
fclose($datei);
}
else
{
$datei=fopen("$filename", "w");
fclose($datei);
$datei=fopen("$filename", "r+");
$counterstand=fgets($datei, 10);
if ($counterstand == "")
{
$counterstand=0;
}
$counterstand++;
echo $counterstand;
rewind($datei);
fwrite($datei, $counterstand);
fclose($datei);
}