View Single Post
Old 08-08-2004, 10:10 AM  
LazyD
Confirmed User
 
Join Date: Aug 2004
Location: www.calidi.com
Posts: 102
There are many ways to do it, for the parsing part try google (search for regex)

To write the file, this is easiest way imo :

$pictureURL = "http://www.gofuckyourself.com/skins/realitycash/images/newthread.gif";
$file = implode("", file($pictureURL));
$handle = fopen("newthread.gif", "w+b");
fwrite($handle, $file);
fclose($handle);
__________________
Calidi studio
http://www.calidi.com
ICQ: #18466283
LazyD is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote