Re: [PHP-DB] Tutorial?

2002-03-04 Thread Aron Pilhofer
. > > - Jonathan > > -Original Message- > From: Aron Pilhofer [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 04, 2002 9:51 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP-DB] Tutorial? > > > The easiest and best solution is to redirect to a new page after the submit

RE: [PHP-DB] Tutorial?

2002-03-04 Thread Jonathan Hilgeman
- Jonathan -Original Message- From: Aron Pilhofer [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 9:51 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Tutorial? The easiest and best solution is to redirect to a new page after the submit. But I have had cases where it was necessary to have the s

Re: [PHP-DB] Tutorial?

2002-03-04 Thread Aron Pilhofer
The easiest and best solution is to redirect to a new page after the submit. But I have had cases where it was necessary to have the submit code and the form on the same page. I agree totally with jonathan that a server-side solution is the way to go. To solve the problem (avoid clicking twice an

RE: [PHP-DB] Tutorial?

2002-03-04 Thread Richard Black
How about mixing the 2??? :-) Richy -Original Message- From: Jonathan Hilgeman [mailto:[EMAIL PROTECTED]] Sent: 04 March 2002 16:51 To: 'Richard Black'; 'Jennifer Downey'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Tutorial? Javascript will functionally solve th

RE: [PHP-DB] Tutorial?

2002-03-04 Thread Jonathan Hilgeman
Downey'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Tutorial? I've also seen something similar implemented using javascript (i guess - never looked into it in any detail) The online bank I use does this. Basically, when I click a submit button, the button is replaced by an image (like a greyed

RE: [PHP-DB] Tutorial?

2002-03-04 Thread Richard Black
il: [EMAIL PROTECTED] -Original Message- From: Jonathan Hilgeman [mailto:[EMAIL PROTECTED]] Sent: 04 March 2002 16:40 To: 'Jennifer Downey'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Tutorial? Hi Jennifer, I'm guessing the purpose of this would be to keep people from doub

RE: [PHP-DB] Tutorial?

2002-03-04 Thread Jonathan Hilgeman
Hi Jennifer, I'm guessing the purpose of this would be to keep people from double-clicking and submitted information twice, possibly making an application deduct payment twice or something important similar in nature. The best way I've found of accomplishing the goal of keeping people from clicki

Re: [PHP-DB] Tutorial?

2002-03-04 Thread Markus Lervik
On Sun, 2002-03-03 at 08:18, Jennifer Downey wrote: > Can anyone point me to a good tutorial on how to disable a submit button > once clicked? > preferably in php. If I understood the question; wouldn't this produce the desired result? VALUE="whatever"> If $disabled is set, the button is rend

Re: [PHP-DB] Tutorial?

2002-03-03 Thread Aron Pilhofer
Could you not put the form inside an if/else statement? If the button isset, or if the name equals submit, then show it disabled. Can't think of a lot of uses for this, unless, I suppose, you want to have a page with lots of forms on it, and you want to submit pieces of information. It wouldn't pr

Re: [PHP-DB] Tutorial?

2002-03-03 Thread Greg Donald
On Sat, 2 Mar 2002, Jennifer Downey wrote: >Can anyone point me to a good tutorial on how to disable a submit button >once clicked? >preferably in php. If you reload the page after the button is clicked then you can simply pass a $disable variable in your form as a hidden field, then you can che

RE: [PHP-DB] Tutorial?

2001-03-02 Thread Boaz Yahav
You can check for PHP / MySQL books at : PHP: http://www.weberdev.com/index.php3?GoTo=ShowShoppingItems.php3%3FMasterCateg ory%3D156%26SubCategory%3D106%26SubCategoryName%3DPHP%26MainCategoryName%3DB ooks MySQL: == http://www.weberdev.com/index.php3?GoTo=ShowShoppingItems.php3%3FMasterC

Re: [PHP-DB] Tutorial?

2001-03-02 Thread Russ Michell
Welcome new person! Most people who ask this question generally get pointed in the direction of Julie C. Meloni's book "PHP Fast & Easy Web Development" It goes from the ABSOLUTE basics through to explaining [MySQL] database connectivity and sql statements. I used it and highly reccommend it.