Hello,

Probably a stupid one but anyway...

In PHP. Is it possible to point to a variable with the HTML form name by 
which it was posted from?

Example:

//point to the variable with something like or somenthing???
$AddNew.SomeVar

<form name="AddNew" method="post" action="<? $PHP_SELF ?>">
$SomeVar = "Add";
</form>

<form name="DeleteOld" method="post" action="<? $PHP_SELF ?>">
$SomeVar = "Del";
</form>

Or do I just have name the variables uniquely?

Thanks
-Will

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

Reply via email to