I am making an HTML form. I want the results to appear in the PHP script.
Try this:
Both your select control and your submit button had the same name
attribute, so the last one used was the submit button when you clicked it. All other syntax errors aside.
Obligatory disclaimer about using raw
$_POST
data. Sanitize anything you'll actually be using in application logic.