hi, i was wondering how i can use php to echo random phrases/quotes like
'blah blah blah'
'asldhasf kdjhfskjf hsjdhf'
and so on.
i did find something like this..
<?
//Chooses a random number
$num = Rand (1,6);
//Based on the random number, gives a quote
switch ($num)
{
case 1:
echo "Time is money";
break;
case 2:
echo "An apple a day keeps the doctor away";
break;
case 3:
echo "Elmo loves dorthy";
break;
case 4:
echo "Off to see the wizard";
break;
case 5:
echo "Tomorrow is another day";
break;
case 6:
echo "PHP is cool!";
}
?>
but for some reason, taht seems like it takes up too much space and too much time
i want a very simple script that is minimal and still works