Re: [PHP] Form call a function on submit

2001-08-06 Thread mike cullerton
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

[PHP] Form call a function on submit

2001-08-05 Thread Richard Kurth
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 Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Form call a function on submit

2001-08-05 Thread Michael Hall
AFAIK the function would always need to exist inside a php file. That file doesn't necessarily need to be a `page' (ie. print any HTML). Just make the ACTION of the form point to the file with your function in it (or a call to the function). Mick On Mon, 06 Aug 2001, Richard Kurth wrote: Is