php - testcounter mit cookie

  • ich hab hier ein textcounter gebaut mit cookie, aber das cookie funzt irgendwie ned... hab keine ahnung warum, irgandwas ist ned ok

    könnt ihr mir helfen?

    und ohne cookie

    danke quadro

  • Versuch's mal so:
    [php:1:8384aae42e]<?php
    $datei = fopen("counter.txt","r+");
    $counterstand = fgets($datei, 10);
    if(isset($altermatt))
    {
    echo $counterstand;
    }
    else
    {
    if($counterstand == "")
    {
    $counterstand = 0;
    }
    $counterstand++;
    echo $counterstand;
    rewind($datei);
    fwrite($datei, $counterstand);
    fclose($datei);
    setcookie("altermatt","mal",time()+(3600*24*14),"/");
    }
    ?>[/php:1:8384aae42e]

    [Blockierte Grafik: http://azustek.az.funpic.de/hf.gif]
    <?php
    $artists = array("Methodman", "Big L");
    if(!in_array($new_artist, $artists)) {
    array_push($artists, $new_artist);
    }