RE: [WSG] Why wont this validate

2004-10-04 Thread Patrick Lauke
You need to move input type=hidden name=submitted value=1 inside a block level element (in your case, move it into the fieldset which immediately follows it). Also, as it's an empty element, you need to make it self-closing input type=hidden name=submitted value=1 / Patrick -Original

Re: [WSG] Why wont this validate

2004-10-04 Thread Olajide Olaolorun
Try and close it meaning input type=blh blh=blh blah=blah / Put the / before the ending and try it On Mon, 04 Oct 2004 17:54:15 +0200, Kim Kruse [EMAIL PROTECTED] wrote: Hi, I'm doing server side validating on a form and I get some errors I'm not able to decrypt. So if someone

Re: [WSG] Why wont this validate

2004-10-04 Thread Clayton Lengel-Zigich
You need to close your input tags... input type=foo name=bar id=foobar / You're missing the / part at the end. On Mon, 04 Oct 2004 17:54:15 +0200, Kim Kruse [EMAIL PROTECTED] wrote: Hi, I'm doing server side validating on a form and I get some errors I'm not able to decrypt. So if

Re: [WSG] Why wont this validate

2004-10-04 Thread cameron muir
Hello, One thing I noticed is that your hidden input field isn't closed (like for img and br): input / cameron. Kim Kruse wrote: Hi, I'm doing server side validating on a form and I get some errors I'm not able to decrypt. So if someone have the time to take a look here

RE: [WSG] Why wont this validate

2004-10-04 Thread Trusz, Andrew
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kim Kruse Sent: Monday, October 04, 2004 11:54 AM To: [EMAIL PROTECTED] Subject: [WSG] Why wont this validate Hi, I'm doing server side validating on a form and I get some errors I'm not able to decrypt.

Re: [WSG] Why wont this validate

2004-10-04 Thread gareth rushgrove
Having a look I think its because you are validating against xhtml strict but haven't closed the hidden input field. You have input ... rather than input ... /, in xhtml all tags have to be closed, including stand alone ones line input or hr. Hope that helps Gareth On Mon, 2004-10-04 at 16:54,

Re: [WSG] Why wont this validate

2004-10-04 Thread Kim Kruse
Wow that was fast... and I've been struggling with this for the last 2 hours. I have things to learn :o) There where as Patrick and others wrote 2 problems. The missing closing tag and the hidden fields should be wrapped in an block element. In this case p tags as moving the hidden field into