PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Warning, the tab entity may not necessarily always actually return a tab (I fired up a quick HTML doc and tested it in FireFox and there was no visible difference)
If you don't care about HTML and want the tabs in the source, do this "\t" (tab escaped). If you really want tabs, try defining a constant that has something along the lines of this: " " or check out this CSS solution:
<p>One of the most dangerous errors of our time...</p>
[syntax=php]p {
margin:0 0 1em 0;
}
#Content>p {text-indent:2em; margin:0;}
#Content>p+p {text-indent:2em; margin-top: 1ex;}[/syntax]
Note that this is a hack and only renders in FireFox, in IE the coding breaks down (which is also why it's got those Hash marks).
Best idea is to doublespace instead of relying on tabs to differentiate between paragraphs.