[PHP] Run php function with user click

2002-05-31 Thread Dave Shacket
I know how to have my php code run a function within itself. But is there a way that upon an event (clicking a button, etc.), you could run a php function without having to go to a new page? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Run php function with user click

2002-05-31 Thread Michael Sweeney
On Friday 31 May 2002 05:44, you wrote: I know how to have my php code run a function within itself. But is there a way that upon an event (clicking a button, etc.), you could run a php function without having to go to a new page? No. PHP is a server side application. The only way to run a

Re: [PHP] Run php function with user click

2002-05-31 Thread Miguel Cruz
On Fri, 31 May 2002, Dave Shacket wrote: I know how to have my php code run a function within itself. But is there a way that upon an event (clicking a button, etc.), you could run a php function without having to go to a new page? javascript onclick or whatever can call a PHP program on your

RE: [PHP] Run php function with user click

2002-05-31 Thread Jay Blanchard
[snip] On Friday 31 May 2002 05:44, you wrote: I know how to have my php code run a function within itself. But is there a way that upon an event (clicking a button, etc.), you could run a php function without having to go to a new page? No. PHP is a server side application. The only way to

Re: [PHP] Run php function with user click

2002-05-31 Thread Jim lucas
: Re: [PHP] Run php function with user click On Friday 31 May 2002 05:44, you wrote: I know how to have my php code run a function within itself. But is there a way that upon an event (clicking a button, etc.), you could run a php function without having to go to a new page? No. PHP

RE: [PHP] Run php function with user click

2002-05-31 Thread Leotta, Natalie (NCI/IMS)
JavaScript could do a similar thing with onClick. -Natalie -Original Message- From: Jim lucas [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 4:21 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Dave Shacket Subject: Re: [PHP] Run php function with user click use flash to open

Re: [PHP] Run php function with user click

2002-05-31 Thread Jim lucas
, May 31, 2002 1:25 PM Subject: RE: [PHP] Run php function with user click JavaScript could do a similar thing with onClick. -Natalie -Original Message- From: Jim lucas [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 4:21 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Dave

RE: [PHP] Run php function with user click

2002-05-31 Thread Leotta, Natalie (NCI/IMS)
lucas [mailto:[EMAIL PROTECTED]] Sent: Friday, May 31, 2002 4:29 PM To: Leotta, Natalie (NCI/IMS); [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: Dave Shacket Subject: Re: [PHP] Run php function with user click but that would take you off the current page wouldn't it? or would you return false? Jim