Form Php


 
  Your Favorites
         
                                   
                                                  
   Please enter your first name:           
     

   Please select your favorite color wine: 
             
     White           
      Rosé
       Red 

   Please enter your favorite dish:           
   


   
             
 

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 );
  }
 ?>