I want to allow people on my site to post html inks in the text box where they submit their articles. Here is the code for the text box:
<td width="75%" align="left" class="heading">
<textarea cols=75 name=article_summary rows=25 class=textarea style="overflow:hidden;"><?=$_POST["article_summary"];?></textarea>
</td>
</tr>
<tr>
<td colspan=2 bgcolor=white></td>
</tr>
<tr>
<td colspan=2 class="bodylinks" align=center>
<input type=submit name=submitarticle value="Submit Article">
</form>
</td>
</tr>
<tr>
Can someone tell me what I've done wrong?