Quote:
Originally Posted by k0nr4d
That could will cause high server load because its using GD. I would just do something like
<?php
Header("Content-Type: image/jpeg");
$images = array('img1.jpg','img2.jpg','img3.jpg');
shuffle($images);
$string = file_get_contents('headers/'.$images[0]);
echo $string;
exit();
?>
|
sweet. *copy >paste >save*