Con la stringa di Margherite nn mi esce nulla, se aggiungo print $fp; di da come risposta (Resource id #19
) :master: ???
Ho provato la seguente stringa:
...............................
<?php
$fp = fsockopen ("www.sito.xxx", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)
\n";
} else {
fputs ($fp, "GET / HTTP/1.0\r\nHost:www.sito.xxx\r\n\r\n");
while (!feof($fp)) {
echo fgets ($fp,128);
}
fclose ($fp);
}
?>
...............................
Mi pubblica tutto il sito, ma nn riesco a fargli pubblicare solamente 1 stringhetta che mi interessa!!
?????????????????????????????????????