QUOTE(cedric @ Jun 11 2009, 07:11 PM)

I'm using <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
when I use a form, my program (eclipse) give me an error that input is in an invalid location???
Why XHTML when you don't care about the rules of XHTML?
http://www.htmlhelp.com/cgi-bin/validate.c...s&input=yesAlso see
http://www.w3.org/TR/xhtml1/#diffs.
Attribute values must always be quoted in XHTML.
The error Eclipse reports about occurs the first time on line 85, I think. Inline content and elements in a form can't be on the loose in (X)HTML Strict. It must be contained in a block level element. See "Contents" here:
http://htmlhelp.com/reference/html40/forms/form.html .
You have a clearing div that occurs between </li> and <li> many times and one time between </li> and </ul>. Nothing can go there in any version of HTML or XHTML.
There!