Page 1 of 1
[Solved]Bingo Board Entry Randomization
Posted: Fri Mar 12, 2004 5:48 pm
by kaYak
I made this bingo board creator where you can enter words in it and then it will make a bingo sheet. I want to know how I could make it so it will move the words around on the bingo board without having the same word on it twice. The creator is at
http://neoe.spike-domain.net/testing/bi ... _maker.php
Thanks,
techguy
Posted: Fri Mar 12, 2004 8:28 pm
by angrytuna
You're passing a bunch of named variables via POST (e.g. twelve, thirteen, fourteen) as I see from viewing the source on that page. It should be simple enough to use the
shuffle function to randomize the values associated with each key. Then just print them out the way you've been doing.
Posted: Sat Mar 13, 2004 4:16 pm
by kaYak
Thanks for your help AngryTuna. I was looking at that function but I'm not sure if I know how to use it.