Re: [PHP-DB] Value of $_POST['submit']

2008-11-28 Thread Fergus Gibson
On Thu, Nov 27, 2008 at 5:02 PM, Ron Piggott <[EMAIL PROTECTED]> wrote: > I am wondering how my PHP script may access the value of value of > $_POST['submit']. At present echo $_POST['submit']; doesn't give me a > value. Consequently all queries to the mySQL database fail. Ron, is your AJAX requ

RE: [PHP-DB] Value of $_POST['submit']

2008-11-27 Thread YVES SUCAET
ginal Message -- Received: Thu, 27 Nov 2008 08:48:08 PM CST From: "Martin, Steve \(MAN-Corporate\)" <[EMAIL PROTECTED]> To: "Yves Sucaet" <[EMAIL PROTECTED]>, Subject: RE: [PHP-DB] Value of $_POST['submit'] When I'm developing a number of pages

RE: [PHP-DB] Value of $_POST['submit']

2008-11-27 Thread Martin, Steve (MAN-Corporate)
, or you didn't code your button as type="submit" (?) Just suggestions - since I can't see the code. Steve - Original Message - From: "Ron Piggott" <[EMAIL PROTECTED]> To: "PHP DB" Sent: Thursday, November 27, 2008 7:02 PM Subject: [PHP-DB] V

Re: [PHP-DB] Value of $_POST['submit']

2008-11-27 Thread Yves Sucaet
Hi Ron, What's your Javascript client-side code to invoke the PHP-script? You may need to switch to $_GET[] instead of $_POST... Yves - Original Message - From: "Ron Piggott" <[EMAIL PROTECTED]> To: "PHP DB" Sent: Thursday, November 27, 2008 7:0

[PHP-DB] Value of $_POST['submit']

2008-11-27 Thread Ron Piggott
I am working on the following web page tonight: http://www.actsministrieschristianevangelism.org/verseoftheday/ I am trying to program the "Load Previous Issue" "Random Issue" and "Load Next Issue" buttons. I am using Ajax to pass the date the user is requesting to the PHP script for processing.