Re: [PHP] Submit Image Button

2003-04-04 Thread Marek Kilimajer
Even if it would be fixed right now, you cannot count on it for several years ;-) Daevid Vincent wrote: Anyone know if this annoying behaviour will ever be 'fixed' in future HTML specs? I can't believe what a glaring oversight this is that the 'value' doesn't get GET/POSTED like with a normal

Re: [PHP] Submit Image Button

2003-04-03 Thread -{ Rene Brehmer }-
On Wed, 2 Apr 2003 21:41:02 -0500, John Coggeshall wrote about RE: [PHP] Submit Image Button what the universal translator turned into this: Well you can ignore it if you don't need the X/Y cord... But you can use it to make sure the button was clicked: If(!$_GET['sub_x'] || !_GET['sub_y

Re: [PHP] Submit Image Button

2003-04-03 Thread Thomas
It works either way apparently...plus, I need the $POST not $_GET. but it works aswell. -{ Rene Brehmer }- [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Wed, 2 Apr 2003 21:41:02 -0500, John Coggeshall wrote about RE: [PHP] Submit Image Button what the universal translator

RE: [PHP] Submit Image Button

2003-04-03 Thread Ford, Mike [LSS]
-Original Message- From: -{ Rene Brehmer }- [mailto:[EMAIL PROTECTED] Sent: 03 April 2003 15:28 On Wed, 2 Apr 2003 21:41:02 -0500, John Coggeshall wrote about RE: [PHP] Submit Image Button what the universal translator turned into this: Well you can ignore it if you don't need

Re: [PHP] Submit Image Button

2003-04-03 Thread Maciek Ruckgaber Bielecki
have a look on button tag in w3c.org mate On Wed, Apr 02, 2003 at 09:27:01PM -0500, Thomas wrote: I have a problem with my php. I have a form and in that form there is an image submit button. When I click on it, it won't tell me if the submit button is clicked. It works fine with a normal

RE: [PHP] Submit Image Button

2003-04-03 Thread Daevid Vincent
Anyone know if this annoying behaviour will ever be 'fixed' in future HTML specs? I can't believe what a glaring oversight this is that the 'value' doesn't get GET/POSTED like with a normal 'submit' button... WTF were they thinking? -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] Submit Image Button

2003-04-02 Thread John Coggeshall
http://www.php.net/manual/en/language.variables.external.php input type=image src=image.gif name=sub This creates variables $_GET['sub_x'] and $_GET['sub_y'] containing the X/Y cordinate where the button was clicked (assuming it was GET method form submission) John

Re: [PHP] Submit Image Button

2003-04-02 Thread Thomas
ok, sorry I'm a newb...what do I do with that info? I saw that page, but it makes no sense to me Thomas John Coggeshall [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] http://www.php.net/manual/en/language.variables.external.php input type=image src=image.gif name=sub This

RE: [PHP] Submit Image Button

2003-04-02 Thread John Coggeshall
] Submit Image Button ok, sorry I'm a newb...what do I do with that info? I saw that page, but it makes no sense to me Thomas John Coggeshall [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] http://www.php.net/manual/en/language.variables.external.php input type=image src=image.gif

Re: [PHP] Submit Image Button

2003-04-02 Thread Thomas
: Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 9:39 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Submit Image Button ok, sorry I'm a newb...what do I do with that info? I saw that page, but it makes no sense to me Thomas John Coggeshall [EMAIL PROTECTED] wrote