<?php
//Total Image Files
$total = "3";
//Image Extension
$file_type = ".jpg";
//Image Location
$image_folder = "";
// You do not need to edit below this line
$start = "1";
$random = mt_rand($start, $total);
$image_name = $random . $file_type;
//Output Image
$image = ImageCreateFromJpeg($image_name);
header ("Content-type: image/jpeg");
ImageJpeg($image);
//Clean Up
ImageDestroy($image);
?>
robmiller said:Do they even support PHP?
robmiller said:I went out, it's only been like 24 hoursWasn't aware a forum sig was that important!