View Full Version : HTML Restriction? Just Text and Numbers?


court3431
08-23-2005, 08:00 PM
Alright, Im making a guide on my webbie, but I lost the code I was using to let only letters,symbols, and numbers show through, not process it into HTML. Like if I was to put <b> </b> but make it show like that, so I could show it was the code to use to make things bold. Does anyone know of the code?

karasu-kun
08-23-2005, 08:07 PM
Well, you could just put the code in a textarea...

<textarea><b>This text will be bold</b></textarea>

That is the easiest way, I believe. Hope this helps~

pretender
08-23-2005, 08:10 PM
&lt;b&gt; will show as <b>
&lt;/b&gt; will show as </b>

or you can use <xmp> </xmp>
Example
<xmp> <b> </b> </xmp>

court3431
08-24-2005, 02:52 AM
Thank you all so much!