HTML "quoting" help, please?

  • Thread starter Thread starter Leo Blaze
  • Start date Start date
L

Leo Blaze

Guest
I don't mean blockquote quoting, I just have no other way to describe this.

How do I make it so that, for example, if I wanted someone to be able to copy-and-paste a bit of HTML, I can put it up without it actually going into format?

For example, if someone wants to copy/paste a link, I put up <a href= etc etc. If I finish the link, it will come up as a link... I want to make it come up as the html itself.

I call this "quoting" because on some sites (like proboards), you could UBBC the code To generate a box where any UBBC you typed showed up as it was. I was wondering if there was an HTML variant of that.

Thanks for your trouble.~
 
Maybe try this:
<form method="post" action="">
<textarea name="comments" cols="40" rows="5">
Enter your comments here...
</textarea><br>
<input type="submit" value="Submit" />
</form>
Hope it helps.
 
I think that this should solve it

<form method="post" action="">
<textarea name="comments" cols="40" rows="5">
Enter your comments here...
</textarea><br>
<input type="submit" value="Submit" />
</form>

Hope it helped.
 
I think that this should solve it

<form method="post" action="">
<textarea name="comments" cols="40" rows="5">
Enter your comments here...
</textarea><br>
<input type="submit" value="Submit" />
</form>

Hope it helped.
 
Back
Top