Salut,
function http($mondomaine, $monfichier){
$a=fsockopen($mondomaine, 80)or die('erreur de connexion');
fputs($a, 'GET '.$monfichier.' HTTP1.1
');
$content='';
while (!eof($a))
$content.=fgets($a, 255);
return $content;
}
In a dream, I saw me, drop dead... U was there, U cried... It was just a dream, if I die, U won't cry, maybe, U'll be happy
Mon site (articles sur la programmation et programmes)