Start the form and specify the method...
<form action="php_script.php" method="post">
In the PHP Script you call the posted fields with $_POST["field_name"]
If you want to just say $field_name then you might have to set REGISTER_GLOBALS to On in the php.ini file
Hope this helps