View Single Post
ישן 01-02-06, 14:53   # 2
Morishani
חבר בקהילה
 
Morishani's Avatar
 
מיני פרופיל
תאריך הצטרפות: Jan 2006
הודעות: 124
שלח הודעה באמצעות MSN אל Morishani

Morishani לא מחובר  

כן, בעזרת fopen,fread . ראה דוגמא :
PHP קוד:
$f fopen("http://google.co.il/logo.gif","rb");
while (!
feof($f))
{
$c .= fread($f,1024);
}
fclose($f); 
__________________
A Proud member of the skrap team
  Reply With Quote