PHP is a very good web programming language. You can virtually do anything with it. Here is how it has made it possible to genrate a randome quote or an image.
PHP Code:
<?php
$codes = array( "image1","image2","image3","image4","image5","image6","image7","image8","image9","image10");
shuffle($codes);
$i=0;
$number=1; while(list(, $code) = each($codes)) {
if ($i>=$number) { break; }
echo "$code";
echo '';
$i++;
} ?>
All you have to do is change the bit where it says image* to either image filename or a quote, and that's it. How easy!