html - Data after <textarea> is not shown -


if go here: http://xcs.dyndns.info/piataterenuri/vinde.php can see footer appears.

but if go http://xcs.dyndns.info/piataterenuri/vinde2.php here, can see nothing displayed after textarea.

the differnce betweeen 2 second 1 has:

<tr> <td class="optiune">info:</td> <td> <textarea cols="30" rows="5" class="field"/></td> </tr> 

why's happening?

textarea tags not self closing (in html). code should be:

<tr>   <td class="optiune">info:</td>   <td>     <textarea cols="30" rows="5" class="field"></textarea>   </td> </tr> 

Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -