RE: [PHP] shows up in IE but not Netscape

2001-02-09 Thread Angerer, Chad
Try closing your table here... or putting the new table in a td. Netscape is very picky with tables. complete the login process and begin using the site. /center /td /tr table ?php }

Re: [PHP] shows up in IE but not Netscape

2001-02-09 Thread Jesse Swensen
Sounds like you may be missing a piece of a table. Make sure all your table, tr, td type tags have a closing tag. IE is more forgiving... -- Jesse Swensen [EMAIL PROTECTED] From: "Erik Boles" [EMAIL PROTECTED] Organization: rocky Mountain Web Tech Reply-To: "Erik Boles" [EMAIL PROTECTED]

Re: [PHP] shows up in IE but not Netscape

2001-02-09 Thread Robin Vickery
"EB" == "Erik Boles" [EMAIL PROTECTED] writes: We are running a webform, that asks for user ID and pass, then passes it on to a .php3 file that shows them a page to continue (not a security thing, just a tracking thing). This .php3 file, called login.php3 works just fine in IE but when

RE: [PHP] shows up in IE but not Netscape

2001-02-09 Thread Matt Williams
/EMBED /OBJECT /td td No /tr Center Welcome back to the ColoradoPTAC website, ?PHP print $row['company']; ?.brbr Please click a href="registered/registered.html" target="_top"here/a to

Re: [PHP] shows up in IE but not Netscape

2001-02-09 Thread Philip Olson
Also : Whenever this problem exists, run your site through here : http://validator.w3.org/ Actually, always run sites through there, it's useful (sometimes a bit picky.) For things like missing table tags, it's very helpful. Regards, Philip -- PHP General Mailing List

Re: [PHP] shows up in IE but not Netscape

2001-02-09 Thread John Vanderbeck
Good web design rule of thumb: Always check against Netscape. If it renders in Netscape, odds are it'll render in IE. The reverse is not true. Matt I find dealing with Netscape browsers a pain. So many people complain that IE doesn't follow the standards, but I find it the other way

Re: [PHP] shows up in IE but not Netscape

2001-02-09 Thread John McCreesh
In article Pine.BSF.4.10.10102091810160.57269-10@localhost, Philip Olson [EMAIL PROTECTED] writes Whenever this problem exists, run your site through here : http://validator.w3.org/ Actually, always run sites through there, it's useful (sometimes a bit picky.) For things like missing