RE: [PHP] lt;buttongt; tag

2004-04-20 Thread Hawkes, Richard
 Some of the forms I'm using in a PHP project I'm working use the 
 button type=submit ... tag to submit.

I think you might prefer:

input type=submit ...

Thanks
Richard

-Original Message-
From: Richard Lewis [mailto:[EMAIL PROTECTED]
Sent: 20 April 2004 09:45
To: [EMAIL PROTECTED]
Subject: [PHP] lt;buttongt; tag


Hello PHPers,

I'm not sure whether this is the best place to post this message...

Some of the forms I'm using in a PHP project I'm working use the button
type=submit ... tag to submit.

They are working fine on Konqueror but don't seem to work properly on MSIE.
I tried inserting the debug code:

echo var_dump($_POST);

into the receiving script and in both Konqueror and MSIE all the values were
present.

Does anyone know what might be going on here?

Cheers,
Richard

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


==
This message is for the sole use of the intended recipient. If you received
this message in error please delete it and notify us. If this message was
misdirected, CSFB does not waive any confidentiality or privilege. CSFB
retains and monitors electronic communications sent through its network.
Instructions transmitted over this system are not binding on CSFB until they
are confirmed by us. Message transmission is not guaranteed to be secure.
==

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] lt;buttongt; tag

2004-04-20 Thread Nunners
button type=submit is not a standard HTML v4 tag

You need:
input type=submit

 -Original Message-
 From: Richard Lewis [mailto:[EMAIL PROTECTED]
 Sent: 20 April 2004 09:45
 To: [EMAIL PROTECTED]
 Subject: [PHP] lt;buttongt; tag
 
 Hello PHPers,
 
 I'm not sure whether this is the best place to post this message...
 
 Some of the forms I'm using in a PHP project I'm working use the button
 type=submit ... tag to submit.
 
 They are working fine on Konqueror but don't seem to work properly on
 MSIE.
 I tried inserting the debug code:
 
 echo var_dump($_POST);
 
 into the receiving script and in both Konqueror and MSIE all the values
 were
 present.
 
 Does anyone know what might be going on here?
 
 Cheers,
 Richard
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] lt;buttongt; tag

2004-04-20 Thread Richard Davey
Hello Richard,

Tuesday, April 20, 2004, 9:44:59 AM, you wrote:

RL They are working fine on Konqueror but don't seem to work properly on MSIE.
RL I tried inserting the debug code:

I'm amazed that worked on Konqueror. It's not even valid HTML. You
sure you didn't mean input type=button ?

-- 
Best regards,
 Richard Davey
 http://www.phpcommunity.org/wiki/296.html

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] lt;buttongt; tag

2004-04-20 Thread Ford, Mike [LSS]
On 20 April 2004 09:45, Nunners wrote:

 button type=submit is not a standard HTML v4 tag

Bzzt! Completely wrong. See
http://www.w3.org/TR/html401/interact/forms.html#h-17.5.

Cheers!

Mike

-
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning  Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Beckett Park, LEEDS,  LS6 3QS,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 283 2600 extn 4730  Fax:  +44 113 283 3211 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php