Parsing HTML Form Results

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”;
}
?>

Leave a Reply


All material @ copyrighted by chrisranjana.com. If you want to link to this article you are welcome to do so. Unauthorized publication is strictly prohibited. This developer tutorial website contains articles by Php programmers , Software developers, Mysql programmers and asp c# programmers. This website also contains ajax tutorials and advanced mysql sql stored procedures and functions tutorials and sample codes.