Re: [PHP] Post without submit?

2001-01-26 Thread Max A. Derkachev
Hello Chris, Friday, January 26, 2001, 8:23:27 AM, you wrote: C> is there anyway to post without clicking a submit button? You can, e.g. using javascript event. on="document.forms['formname'].submit()" -- Best regards, Max A. Derkachev mailto:[EMAIL PROTECTED] Symbol-Plus Publishing Ltd. phon

Re: [PHP] Post without submit?

2001-01-25 Thread Remco Chang
. Crawford" <[EMAIL PROTECTED]> To: "Chris" <[EMAIL PROTECTED]>; "PHP" <[EMAIL PROTECTED]> Sent: Thursday, January 25, 2001 6:24 PM Subject: Re: [PHP] Post without submit? > Sorry, just to be a bit clearer... Suppose you wanted to associate it with > a

Re: [PHP] Post without submit?

2001-01-25 Thread Richard S. Crawford
Sorry, just to be a bit clearer... Suppose you wanted to associate it with a link, you could do something like the following: click here to submit Hope that helps. At 03:22 PM 1/25/01 -0800, Richard S. Crawford wrote: >Without knowing exactly what you want to do, I would try something like

RE: [PHP] Post without submit?

2001-01-25 Thread DanO
e- > From: Chris [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 25, 2001 9:23 PM > To: PHP > Subject: [PHP] Post without submit? > > > is there anyway to post without clicking a submit button? > -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] Post without submit?

2001-01-25 Thread Richard S. Crawford
Without knowing exactly what you want to do, I would try something like the following in JavaScript: function doSubmit() { document.form.submit() } Then associate the function with any sort of desired event. In a project of mine, I have it attached to a keypress function so that the

[PHP] Post without submit?

2001-01-25 Thread Chris
is there anyway to post without clicking a submit button?