Well this is a really simple script for a random signature. The same code as used in J0shIsBackLol's signature.
PHP Code:<?php
header("Content-type: image/png");
$images[] = "URL OF IMAGE";
$images[] = "URL OF IMAGE";
srand ((double) microtime() * 1000000);
$randomimg = rand(0,count($images)-1);
$im = imageCreateFromPng($images[$randomimg]);
imagepng($im);
imagedestroy($im);
?>






Reply With Quote







