Forms
|
|
|
|
<?php function PassHiddenVars ()
{
// Bring in Posted Vars
global $HTTP_POST_VARS;
foreach($HTTP_POST_VARS as $InputName => $InputValue)
{
$HiddenInputs .= "<INPUT NAME='$InputName' TYPE='hidden' VALUE='$InputValue'>n";
};
return $HiddenInputs;
}
?>
|
|
|
Usage Example
|
|
|
Rate This Script
|
|
|
|