Lunch Location Randomizer
Live in Austin, TX and cant figure out where to eat? Try our Lunch Location Randomizer, and take the hurt out of having to choose.
Categories: Projects
Set Tags: text
Lunch Location Randomizer
If you live in Austin, Texas and cant figure out where to eat, try our Lunch Location Randomizer. Simply refresh this page and refer to the recommendation listed below.
$x=0; $whattoread = @fopen("/home/hurmcom/hurm.com/studio/lunch/random.txt", "r") or die("Could not open file, contact web master"); while (!feof($whattoread)) /* READS THE QUOTES IN AND STORES THEM IN AN ARRAY */ { $quote_array[$x]=fgets($whattoread,4096); $x+=1; } $choice=rand (0,($x-1)); echo "$quote_array[$choice]" ; ?>