// Get the stuff entered into a form
$name = $_GET["name"];
$mood = $_GET["mood"];
echo $name . ", ";
// Based on what was selected in the form, pick an output
if ($mood == "happy") {
echo " I am jealous of your happiness.";
} else {
echo " why so glum?";
}
?>