In my database I have the following text:

for x in values:
   print x

I want to print this code on my HTML page. It is printed by PHP to the HTML file as it is. But when HTML is displayed by a browser I, of course, do not see text in this form. I see the following:

for x in values: print x

I partially solved the problem by nl2br, I also use str_replace(' ','&nbsp',$str). As a result I got:

for x in values:
print x

But I still need to shift print x to the right. I thought that I can solve the problem by str_replace('\t','   ',$str). But I found out that str_replace does not recognize the space before the print as '\t'. This space is also not recognized as just a space. In other words, I do not get any   before the print.

Why? And how can the problem be solved?

link|improve this question

64% accept rate
Why not putting the text to be displayed inside a <pre> tag? – guido Jan 18 '11 at 9:56
1  
php.net/types.string <- a text that every PHP developer should learn by heart – Your Common Sense Jan 18 '11 at 10:01
feedback

4 Answers

You need to place \t in double quotes for it to be interpreted as a tab character. Single quoted strings aren't interpreted.

link|improve this answer
feedback

always use double quotes when using \t \n etc

link|improve this answer
feedback

It can be tricky because tabs don't actually have a fixed size and you'd have to calculate tab stops. It can be simpler if you print blank space as-is and instruct the browser to display it. You can use <pre> tags:

<pre>for x in values:
   print x</pre>

... or set the white-space CSS property:

div.code{
    white-space: pre-wrap
}

(As noted by others, '\t' is different from "\t" in PHP.)

link|improve this answer
feedback

Copy the tab character (" ") from notepad, your databasestring or this post, and add this code:

str_replace('   ','&nbsp;&nbsp;&nbsp;&nbsp;',$str);

(this is not four spaces, it is the tab character you copied from notepad)

Do not remove the

str_replace("\t",'&nbsp;&nbsp;&nbsp;',$str)

just in case it could be useful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.