Hello, and welcome. No need to begin your post with an apology.
When I visit the link provided, I am taken to a blank page. I assume that's not what's supposed to happen.
Your question is pretty vague, but the below example demonstrates most of what you need to know in order to submit an HTML form to a PHP script. When the form's submit button is pressed, the contents of the form are POSTed to the webserver. By telling the form to POST to itself, you can include the PHP logic that is required to process the form right in the same PHP page. Of course, if your preference is to POST the data to a different PHP page, simply modify the "action" value to point to a different relative location.
Be sure to VALIDATE any data that your form accepts. Regular expressions, while difficult to learn, are exceptionally well-suited to the task.
<?php
if (!empty($_POST)) {
//We know that some POST data has been submitted.
if (!empty($_POST['btnsubmit']) && $_POST['btnsubmit'] == 'Submit Form') {
//We know that the POST data likely came from our form.
//Let's print whatever data was provided in the "mytext" input field.
echo $_POST['mytext'];
}
}
?>
<form name="myform" method="post" action="<?php echo $_SERVER['PHP_SELF']?>">
<input name="mytext" type="text" value="" />
<input name="btnsubmit" type="submit" value="Submit Form" />
</form>
Let us know if you need more help. And be sure to post as much information as possible, including source code wrapped in the forum's php tags.