Endless Paradigm

Full Version: Gift for V1
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
well you asked for it so here you go






it is attached to this post photobucket is down
Thanks!! great!

Added to my random sign,.!!
nice i see it now O_O
Shady545 Wrote:nice i see it now O_O

lOOl its 3 sign's,.. in 1,.!!

There are not many picture's of foster's on the web,.?! :S
v1 how do u do the random sig thing?
look at the image location

http://vegetano1.endlessparadigm.com/ran...avatar.php

goto simply gaming
rockhead Wrote:v1 how do u do the random sig thing?

You need a server wich suport's image's and you need a php script,.
Vegetano1 Wrote:
rockhead Wrote:v1 how do u do the random sig thing?

You need a server wich suport's image's and you need a php script,.

wow damn, but if i recall can't you just use your computer as a server? and the php script shouldnt be all to hard to make right?
Tetris999 Wrote:
Vegetano1 Wrote:
rockhead Wrote:v1 how do u do the random sig thing?

You need a server wich suport's image's and you need a php script,.

wow damn, but if i recall can't you just use your computer as a server? and the php script shouldnt be all to hard to make right?

Server and computer are different,. but should work,.

The script: i think ZingaBurga made this script,.. but i am not sure,.
save as .txt and rename to .php place in the same dir as the picture's

Code:
<?php

// Force no caching
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); 
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Content-Type: image");








//****************** CHANGE THIS PART **************************
//Add lines to add images

$pic = array(
 "1.png",
 "2.png",
 "3.png",
 
);


//**************************************************************













$rpic = $pic[mt_rand(0, count($pic)-1)];

header("Content-Length: ".filesize($rpic));

$fp = fopen($rpic, 'rb');
fpassthru($fp);
fclose($fp);

?>

Nice ^^
Reference URL's