RE: [PHP-DB] Invisible Submit

2004-10-01 Thread Gryffyn, Trevor
You could do something trick with an IFRAME or something that calls another script passing the data via the URL/$_GET instead of submitting a hidden form. Or just record the data in the session variables and process it that way. If you're using PHP, there's lots of things you can do to capture

Re: [PHP-DB] Invisible Submit

2004-10-01 Thread Brent Baisley
Javascript. Forms are submitted from the client, so PHP has absolutely nothing to do with submitting a form. PHP just process the data passed to it. You can you javascript timers to automatically submit a form after a certain interval. On Oct 1, 2004, at 10:19 AM, Stuart Felenstein wrote: I'm

Re: [PHP-DB] Invisible Submit

2004-10-01 Thread Stuart Felenstein
I am sure that I have no other choice but to submit the form. So right now this is the form action: form name={HTMLFormName} action={Action} method=post Now once I hit submit button it takes me to another form where some of the data from the first is passed over via URL. I saw some items