I’m trying to make a header image change randomly based on a random number being chosen. This is the code I have right now, and it requires the entire tag.
<img src="http://www.example.com/site_gfx/headers/header_<?php echo(rand(1,7)); ?>.png" width="980" height="230" alt="Example Site" />
Is there any reason it would be dying like it is? Where the <?php echo part is is the PHP code i’m using to generate the random number, and I’d like to include that into the string for the img src
Figured it out. The problem is I didn’t realize the
<?phparea was running within anechocommand (stupid little oversight on my part). But modifying theechostatement that I was working with fixed it.Thanks for the pointers, everyone.