Your Favorites
File: fav.php
Your submission
$username = $_POST['username'];
$color = $_POST['color'];
$dish = $_POST['dish'];
if( $username != null )
{
echo( "Thanks for your selection $username
" );
}
if( ( $color != null ) && ( $dish != null ) )
{
$msg = "You really enjoy $dish
";
$msg .= "- especially with a nice $color wine";
echo( $msg );
}
?>