hey, i am designing a website where you can simply edit the content of webpages on the actual website in the administration. I made the script to change the contents of my contact page. The source for each page shows up in a textarea where you can change it. the only trouble is the actual contact page has a textbox in it.
The actual webpage source goes like this:
<br>Enter your letter below<br>
<textarea name="content">
</textarea>
</p>
<input type="submit" value="contact now">
</form>
when i edit it on my site, the source only goes this far:
<br>Enter your letter below<br>
<textarea name="content">
how can i sort this problem, because it is essential i solve this


