sigh 🙁
form.html:
<form action="hello.php" method=post>
Enter your name, please:<input type=text name=your_name><br>
<input type=submit name=submit value="Go!">
</form>
hello.php:
<?
echo "Hello, ".$_POST['your_name']."!!";
?>
simple ... you can build from here ...