ShaolinF Posted July 31, 2007 Share Posted July 31, 2007 Hi Guys, I have a script which grabs random images from a folder and outputs them. It was working fine until I moved it onto another host. Now I've tried so many different things but the image just does not display. May I add that the new host is one of those free ones where you provide your own domain. Anyway, here is the script: <?php $files = glob("ym/*.jpg"); $path = $files[rand(0,count($files)-1)]; echo "<img src='$path' title='an image' alt='an image' border='1px' />"; ?> Does anyone have any idea why its not working ? The script is in main dir. along with the "ym" folder. It should work (as it did before) ! Quote Link to comment https://forums.phpfreaks.com/topic/62607-script-not-working/ Share on other sites More sharing options...
btherl Posted July 31, 2007 Share Posted July 31, 2007 What happens if you try to view an image directly, rather than through the script? Also, it might be a good sanity check to test that $files is not empty. Quote Link to comment https://forums.phpfreaks.com/topic/62607-script-not-working/#findComment-311694 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.