Hello I would like to have a code that displays randomly from an array a number and displays it. For example this code
<?php
$firstquarter = array(1 => 'January', 'February', 'March');
print_r($firstquarter);
?>
will return
Array
(
[1] => January
[2] => February
[3] => March
)
Instead of this, I would like to display on
array_rand? Your questions isn't that clear...