html-entities

Encoding a tab in html

I can encode a space using &nbsp; in an HTML document. Is there an equivalent for the tab character? I'm trying to preload a <textarea> with text that contains tabs, but my CMS removes any tab characters that exist in the HTML code. ...

PHP string cut short

Why does this code $string = "!@#$%^&*(<[email protected]"; echo $string; only output: !@#$%^&*( Is this is a PHP bug? ...