hello,
I have been playing with this code i know the random number will only pic one at this time. But I can not get the picture to show when I run the script can anyone see a issue. I do have a picture in the folder webpage/1.gif the script gets called from the directory about webpage. when I echo visualpic; it shows the path.
$path = webpage;
$num1 =1;
$picture = rand(1,$num1);
$visualpic ="$path"."/"."$num1".".gif"."";
echo $visualpic;
echo"<img src='.$visualpic.' alt='' width='150' height='200'><br/>";
gishaust