Question
PHP Random Images Function
I had made a php random image function and the problem I have
at this moment is I don't want to change the "4" number to a "5"
because I included another image. Is there a value where the "4" is
some php function so I do not need to always update?
<?php
$roll = rand(1,4);
print "<img src = randImages/Bn$roll.jpg>";
?>
Thank you,
AdonaiEchad
<?php
$roll = rand(1,4);
print "<img src = randImages/Bn$roll.jpg>";
?>
Thank you,
AdonaiEchad
