You assign it to a hidden field in your form

<input type="hidden" name="formName" value="actualFormName">

in your PHP:
$formName = $_POST['formName'];


of course, this would have to be accomplished BEFORE the form is submitted. Not sure if that is what you are looking for or not...


HTH,
Roger

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to