ho un problema con un piccolo script in php...
volevo usare le news di punto-informatico in php per metterle sul mio sitino...
il codice da prelevare è il seguente:
<?php
################################################## ####################
# Cattura le ultime notizie da www.punto-informatico.it
# ================================================== ===
#
# Copyright (c) 2000 by Marcello Villani (villani@p2p.it)
# http://www.p2p.it
#
# This program is free software. You can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License.
################################################## ####################
$news=fopen("http://punto-informatico.it/fader/uo.txt","r"); #apre in lettura il file delle news ultim'ora
echo "<font size=1>"; #Dimensione del Carattere; volendo è possibile specificare anche il tipo
while (!feof($news)) {
$buffer = fgets($news, 4096);
$buffer2 = fgets($news, 4096);
if ($buffer!=$buffer2){
echo "<li><a href=".$buffer2.">".$buffer."</a><br>"; #essendoci il <li> viene fuori un elenco puntato
}
}
fclose ($news); #chiude il file
$news=fopen("http://punto-informatico.it/fader/fader.txt","r");
while (!feof($news)) {
$buffer = fgets($news, 4096);
$buffer2 = fgets($news, 4096);
if ($buffer!=$buffer2){
echo "<li><a href=".$buffer2.">".$buffer."</a><br>";
}
}
fclose ($news);
echo "</font>";
?>
scusate la lunghezza...
il problema è che se uppo detto script sul mio spazio in altervista mi produce un errore questo errore:
Fatal error: Maximum execution time of 15 seconds exceeded in /membri/drudo/newspi.php on line 19
dove la riga 19 è la seguente:
$buffer2 = fgets($news, 4096);
Sapreste dirmi a cosa è dovuto?
il file (di prova) lo trovate quì:
http://drudo.altervista.org/newspi.php
il codice di punto-informatico invece:
http://punto-informatico.it/newsbox/script.asp?i=1
ciao
drudo