jahrichie

Untitled

Mar 16th, 2011
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?
  2.  //Chooses a random number
  3.  $num = Rand (1,6);
  4.  //Based on the random number, gives a quote
  5.  switch ($num)
  6.  {
  7.  case 1:
  8.  echo "Time is money";
  9.  break;
  10.  case 2:
  11.  echo "An apple a day keeps the doctor away";
  12.  break;
  13.  case 3:
  14.  echo "Elmo loves dorthy";
  15.  break;
  16.  case 4:
  17.  echo "Off to see the wizard";
  18.  break;
  19.  case 5:
  20.  echo "Tomorrow is another day";
  21.  break;
  22.  case 6:
  23.  echo "PHP is cool!";
  24.  }
  25.  ?>
Advertisement
Add Comment
Please, Sign In to add comment