PHP DO NOW #1

Situation
You had a form with two input fields called "FavoritePlace" and "BestDay"
The form uses the POST method

Your Task
Write the PHP code on a sheet of paper (or type it) that would (after they hit the submit button) print the information the person typed.

It should print like:

Your favorite place is put that here and your best day was on put that here.

 

------------------------------------------

 

All you need to type is the line or couple of lines that would go between:

<?php

echo ...

?>