on 8/5/01 11:05 PM, Richard Kurth at [EMAIL PROTECTED] wrote:

> Is it possible to have a form submit button call a function. Like for
> updating a record in a database or for deleting data. Rather than a
> new page or with PHP_SELF

i'm sure this isn't the only way, but what i do is...

switch ($submit) {
 case "my_value":
  my_function();
  break;

 case "my_other_value":
  my_other_function();
  break;

 default:
  my_default_function();
  break;
}

so, when the form is submitted, i check the value of submit and run the
corresponding function.

hope this helps,
mike

 -- mike cullerton



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to