How would I set PHP to randomly chose between these two sets of variables to use:
$key = goop;
$john = heck yeah;
and this
$key = roop;
$john = reck reah;
Thanks ever so much! :)
|
|
|
I'd recommend using an array:
|
|||||||||||
|
|
For example:
|
|||||||||||||||||
|
|
Store the values in an array, and then use
You can easily extend this by adding values to the respective arrays, and increasing the maximum random number (i.e. second argument in |
|||||||||||
|