Drink server
// Create the array $name[]
$name[0] = "Bloody Mary";
$name[1] = "Screwdriver";
$name[2] = "Fire Wagon";
$name[3] = "Long Island Ice Tea";
$name[4] = "GT";
// Create the array $content[]
$content[0] ="Tomato juiceVodkaTabasco sauceWorcestershire sauceSelleri salt";
$content[1] ="VodkaOrange juice";
$content[2] ="JägermeisterRed soda water";
$content[3] ="VodkaGinTequilaLemonCola";
$content[4] ="GinTonic";
if (count($name) == count($content)) {
$available = (count($name) - 1); // since array starts at 0
$chosen = rand (0,$available);
echo "Have a thirsty client? Try serving him/her:
\n";
echo "$name[$chosen]
\n";
echo "";
echo "Want another suggestion?
\n";
}
else {
echo "Ooops! Stupid programmer! Check your arrays.
";
}
?>
Back to Problem Set index page