Make a PHP script in two parts:
(First part)
if(isset($action1)){
The HTML form with the test. It's action must be $PHP_SELF?action2=1
}
(Second part)
if(isset($action2)){
Here u can use $HTTP_POST_VARS["Whatever"], or simply picking up the values of the HTML forms calling them by name with the $ before. So if you had a textbox named "text", u can pick up it's value by using
$variable=$text;
}
Hope it helps 🙂
fLIPIS