Jump to content

Script not working


ShaolinF

Recommended Posts

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) !

Link to comment
https://forums.phpfreaks.com/topic/62607-script-not-working/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.