• User Newbie

    <br>

    questo è lo script:

    echo "ULTIMO AGGIORNAMENTO: " . date ("F d Y H:i:s", filemtime($filelocation));
    $newfile = fopen($filelocation,"r");
    $content = fread($newfile, filesize($filelocation));
    fclose($newfile);

    devo inserire due <br> tra la stampa della data dell'ultimo aggiornamento del file txt ed il contenuto dello stesso, qualcuno mi aiuta? grazie


  • Consiglio Direttivo

    echo "ULTIMO AGGIORNAMENTO: " . date ("F d Y H:i:s", filemtime($filelocation)) . "<br>";
    $newfile = fopen($filelocation,"r");
    $content = fread($newfile, filesize($filelocation));
    fclose($newfile);
    Ciao max1412
    hai provato così?