|

Re: [PHP] Netscape Trouble
From: Richard Lynch (richard <email protected>)
Date: 07/03/00
In article <B5852FF1.5B33%don <email protected>>, don <email protected> (Don
Smith) wrote:
> however, when it's the last day of June and the first radio button is on the
> first of July (as it should be), the radio button on the first of July can't
> be selected in Netscape! No problem in IE. I have my </form> closing tag
> that Netscape requires that IE doesn't, so that's not the problem.
Get the FORM tag *OUTSIDE* all those TABLE/TR/TD tags. Don't criss-cross
your HTML opening/closing tags ever. Always nest them.
Right:
<FORM><TABLE><TR><TD></TD></TR></TABLE></FORM>
<TABLE><TR><TD></TD><FORM></FORM></TR></TABLE>
Wrong:
<TABLE><TR><TD><FORM></TD></TR></TABLE></FORM>
<TABLE><TR><TD><FORM></TD></TR></FORM></TABLE>
<TABLE><TR><TD><FORM></TD></FORM></TR></TABLE>
--
Richard Lynch | If this was worth $$$ to you, buy a CD
US Customer Support Director | from one of the artists listed here:
Zend Technologies USA | http://www.L-I-E.com/artists.htm
http://www.zend.com | (this has nothing to do with Zend, duh!)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>
|