Not able to add proper textarea in post
-
Hi,
I want to add one textarea(having content) in my post but like below
<form action=”file.php” method=”post” target=”_blank”>
<textarea name=”tbox” rows=”8″ cols=”20″>
<html>
<body>
<h1>Hello<h1>
</body>
</html>
</textarea>
<input name=”submit” type=”submit” value=”Show Result”>
</form>but when I add this and check in visual, every line comes in seprate text area like this
<form action=”file.php” method=”post” target=”_blank”>
<textarea name=”tbox” rows=”8″ cols=”20″></textarea>
<textarea name=”tbox” rows=”8″ cols=”20″><html></textarea>
<textarea name=”tbox” rows=”8″ cols=”20″><body></textarea>
<textarea name=”tbox” rows=”8″ cols=”20″><h1>Hello<h1></textarea>
<textarea name=”tbox” rows=”8″ cols=”20″></body></textarea>
<textarea name=”tbox” rows=”8″ cols=”20″></html></textarea>
<input name=”submit” type=”submit” value=”Show Result”>
</form>Does anyone have idea how to resolve this problem.
Thanks in advance
Regards,
Abhishek Saxena
- The topic ‘Not able to add proper textarea in post’ is closed to new replies.