Hi!
naja, du schreibst dann <img src="bild<?=$zufallszahl?>">
Wobei Du nun unterstellst, dass "bild$zufallszahl"
eine Bildressource identifiziert.
Wenn die Name der Bilder nicht so normalisiert vorliegen, könnte ein Array helfen:
// Alle Bilder als Array-Element
$images = array('house.png', 'pointer.jpg', 'http://example.net/pics/32801');
// Zufallszahl mit [link:http://php.net/manual/de/function.mt-rand.php@title=mt_rand] zwischen 0 (erster Index)
// und Arraylänge ([link:http://php.net/manual/de/function.count.php@title=count]) -1 (höchster Index)
$currentPic = mt_rand(0, count($images)-1);
?>
<!-- ich vertraue nicht auf short_open_tag = on -->
<img src="bild<?php echo $currentPic?>" title="" />
off:PP
--
"You know that place between sleep and awake, the place where you can still remember dreaming?" (Tinkerbell)
"You know that place between sleep and awake, the place where you can still remember dreaming?" (Tinkerbell)