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
Post a Comment