Re: [PHP] Random number generator

2008-11-05 Thread Gary M. Josack
Stephen wrote: On a php web page I want to generate a random number between say 1 and 10 and then use that number to reference a particular file in an include tag. ?php include('GeneratedNumber.html'); ? Is there an easy way to do this? Get the time and use the last digit converting 0

Re: [PHP] Random number generator

2008-11-05 Thread Gary M. Josack
WEISD wrote: Just starting out, thanks. So, ?php $number = rand(1, 10); include('$number.html'); ? I should have prefaced the question with, New to PHP... TG [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Here's how you generate a random number: