Parsing HTML Form Results
Parsing HTML form results:
To parse the HTML form result for verification or mailing we can use the following method.
Using this, we can easily get values then extract POST values and store it in variable.
<?php
echo “Your Details”;
foreach($HTTP_POST_VARS as $key=>$value)
{
if ($value)
echo $key: $value.”\n”;
}
?>
