Say we have an array like this with 1 being two values and 2 being two values and 3, etc
$language = array
(
"1"=>array
(
"Hola",
"Spanish"
),
"2"=>array
(
"Fáilte",
"Irish"
),
"3"=>array
(
"Yasou",
"Greek"
)
);
How would I randomly select ONLY 1 of 3 arrays and display the two values it has.
So something like this, $language[2][1], thats in $language[2][2].
Which should be, Fáilte, thats in Greek