Re: </form> not valid!?

Am 11.02.2009 um 19:45 schrieb Roberto:

> Hello, I'm Roberto and I'm italian.
> My site is valid, but if I add at the end of any form this: "</ 
> form>" the validator shows me an error.. Why? It is a bug?
>
> Here you can find the html code.
> http://pastebin.com/m20e10b0
>
> The error is at line 90.
>
> <form method="post" action="search.php" / 
> >                                 Keyword:<br / 
> >                                 <input type="text" name="keyword"  
> value="" class="tx" style="width: 120px;" /><br / 
> >                                 <input type="submit" value="Cerca"  
> class="submit" />                         </form>
>
> Bye


The error is indeed at line 90: you have already closed the form  
element just at the beginning instead of letting it open. You've written
<form method="post" action="search.php" /> instead of <form  
method="post" action="search.php"> .

Regards,
Sierk

-- 
Sierk Bornemann
WWW:              http://sierkbornemann.de/

Received on Wednesday, 11 February 2009 21:56:52 UTC