|
Posted by Fred Atkinson on 08/28/07 03:21
On Mon, 27 Aug 2007 03:22:44 +0100, "peter" <submit@flexiwebhost.com>
wrote:
>
>> I need some help on revising a simple PHP script. The script
>> I currently have is:
>>
>> <?php
>> $image = getRandomImage(LL/');
>> echo "<img src='$image' height=90 width=120 alt='LL'>";
>> ?>
>>
>> The script looks in the subdirectory for a random image and
>> displays the one it chooses.
>>
>> What I want to do modify it for is so that if it doesn't find
>> an image in the subdirectory, that a default image (from the current
>> directory rather than the designated subdirectory) ) can be displayed
>> instead.
>
>and what does getRandomImage return if not image is found, does it return
>null, does it return an empty string etc.
>
>Once you find that out you simply do an if statement checking checking if it
>returned null or an empty string (or whatever else it may return)
>
It returns null, which brings up a blank image.
Fred
[Back to original message]
|