View Single Post
Re: a different sig each time
Old
  (#10)
Pierre-Marie Baty
Roi de France
 
Pierre-Marie Baty's Avatar
 
Status: Offline
Posts: 5,049
Join Date: Nov 2003
Location: 46°43'60N 0°43'0W 0.187A
Default Re: a different sig each time - 03-01-2004

I was to post about the same thing
PHP Code:
<?php
$filename 
sprintf ("sig%d.png"rand (09));
 
$image imagecreatefrompng ($filename);
 
header ("Content-type: image/png");
imagepng ($image);
imagedestroy ($image);
 
?>
creditz to you Brian, of course



RACC home - Bots-United: beer, babies & bots (especially the latter)
"Learn to think by yourself, else others will do it for you."

Last edited by Pierre-Marie Baty; 03-01-2004 at 01:06..
  
Reply With Quote