Okay, I got to work a basic random image maker! But now how can i mod it to display chain images? I made this:
[PHP]<?php
$start = "1";
$total = "2";
$rand = mt_rand($start, $total);
if($rand == 1) {
$randimg1 = "Car_01.gif";
$randimg2 = "Car_02.gif";
}
if($rand == 2) {
$randimg1 = "Bus_01.gif";
$randimg2 = "Bus_02.gif";
}
?>[/PHP]
Is it any good? Can it work? and how can i implement this into a html.php? :o