View Single Post
Old 01-19-2008, 11:48 PM   #15 (permalink)
Salathe
Moderateur
RegEx Guru PHP Guru Top Contributor Advanced Programmer 
 
Salathe's Avatar
 
Join Date: Apr 2007
Posts: 1,393
Thanks: 5
Salathe is on a distinguished road
Default

For my signature :)

PHP Code:
/* Output the finished image */
header('Content-Type: image/gif');
imagegif($im$dir.'cache_img.gif');
imagegif($im);
imagedestroy($im);


// Write cache
file_put_contents($dir.'cache_hash.txt'$cache_hash); 
Salathe is offline  
Reply With Quote