Random can be fun
NOV
21
Here is a snippet that will display a random sentence or phrase out on a php page.
--------------------------------------------------
$sentences = array(
'RRRRR Matey'
,'Take a chill pill'
,'Sit and relax'
,'On vacation we go'
);
$random_sentence = $sentences[ rand(0,count($sentences)-1) ];
echo $random_sentence;
---------------------------------------------------------