[PHP] auto-submit

2004-06-28 Thread Jim Rainville
Hi - I'm writing a multi-page php script that keeps track of state with a hidden variable in the html forms. It's all working well except I would like to know how to auto submit a form and change the state. For example when I'm in state 2 and the user enters some data and hits a submit button

[PHP] auto submit

2002-04-03 Thread Martin Kampherbeek
Is the folowing possible to do? I fill in a form and press submit. Then I read a record from a database. With this data it submits to the read submits url. After 10 seconds, it reads the next record and submits that data. etc etc So I don't have to push submit each time I want to submit. After

Re: [PHP] auto submit

2002-04-03 Thread heinisch
At 03.04.2002 11:22, you wrote: Is the folowing possible to do? I fill in a form and press submit. Then I read a record from a database. With this data it submits to the read submits url. After 10 seconds, it reads the next record and submits that data. etc etc So I don't have to push

RE: [PHP] auto submit

2002-04-03 Thread Maxim Maletsky
-Original Message- From: Martin Kampherbeek [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 11:23 AM To: [EMAIL PROTECTED] Subject: [PHP] auto submit Is the folowing possible to do? I fill in a form and press submit. Then I read a record from a database. With this data

[PHP] Auto submit form, How?

2001-06-30 Thread Fates
How do I auto load or auto submit a form on the same page? I don't want to have to press the submit button instead just click on a value in the drop down form and it loads (I am lazy). Using php4.something -- This email was sent using w3mail. -- PHP General Mailing List

Re: [PHP] Auto submit form, How?

2001-06-30 Thread Peter Dudley
http://www.devguru.com/Technologies/ecmascript/quickref/select.html Javascript. Use onBlur or onChange and call document.formname.submit(). Pete. Fates [EMAIL PROTECTED] wrote in message

[PHP] Auto submit form

2001-06-30 Thread David
How do I autoload a selection from a drop down menu form based on the selection without having to click a submit button? -- 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

Re: [PHP] Auto submit form

2001-06-30 Thread Justin French
David wrote: How do I autoload a selection from a drop down menu form based on the selection without having to click a submit button? Everything to do with forms is either to do with hitting a submit button (call to a server) or without (which means that the browser/client is handling it), so

Re: [PHP] Auto submit form, How?

2001-06-30 Thread Henrik Hansen
Fates [EMAIL PROTECTED] wrote: How do I auto load or auto submit a form on the same page? I don't want to have to press the submit button instead just click on a value in the drop down form and it loads (I am lazy). use javascript, to find you answer look here