You are missing some fields in your HTML form - 1 input text field - 2. a submit button...
Here is one example on how to create a script like that:
----collection.php--------------------------------------------
if(isset($_POST['FormField'])){
// if the vaiable $_POST['FormField'] has a value
echo "You submited the following information: ".$_POST['FormField'];
}else{
//if the the vaiavle $_POST['FormField'] is blank
echo "You did NOT submit any information";
}
?>