Posted by chris.huh on 11/14/06 20:43
I have a bit of code i got from a site a while ago. I notice now that
the script does not work on my local machine running php5 but does work
on my hosting server with php4 on it so i am guessing it is somethign
to do with that.
The code is:
<?
$textfile ="random.txt";
$items = file("$textfile");
$item = rand(0, sizeof($items)-1);
echo $items[$item];
?>
Does anything think that it is because of the versions and if it is how
to fix it?
Thanks
Navigation:
[Reply to this message]
|