carlos1234 Posted June 23, 2009 Share Posted June 23, 2009 Hi there, Why doesn't the following snippet output what I would expect it to output in echo case number 1? <?php echo '1. /<'."hello"."<br>"; echo "2. /<hello"."<br>"; echo "3. /\<hello"."<br>"; echo "4. /hello"."<br>"; echo "5. /<\hello"."<br>"; ?> What I want to see it output is "1. /<hello". Instead I get the following output. 1. / 2. / 3. /\ 4. /hello 5. /<\hello Why is that? Anybody? Thanks. Carlos Quote Link to comment https://forums.phpfreaks.com/topic/163435-solved-why-doesnt-this-echo-statement-output-what-one-might-expect/ Share on other sites More sharing options...
thebadbad Posted June 23, 2009 Share Posted June 23, 2009 View the source of the output, and it's all there. The browser tries to interpret half assed tags like <hello as HTML. Quote Link to comment https://forums.phpfreaks.com/topic/163435-solved-why-doesnt-this-echo-statement-output-what-one-might-expect/#findComment-862300 Share on other sites More sharing options...
carlos1234 Posted June 23, 2009 Author Share Posted June 23, 2009 Thanks very much thebadbad! You is bad! . I never would have guessed that the browser would try and render a "<hello" as HTML. Just weird. But that certainly explains it. What threw me off is that some other words than "hello" added to the "<" don't cause this problem and are displayed by the browser just fine. Thanks again. Carlos Quote Link to comment https://forums.phpfreaks.com/topic/163435-solved-why-doesnt-this-echo-statement-output-what-one-might-expect/#findComment-862304 Share on other sites More sharing options...
thebadbad Posted June 23, 2009 Share Posted June 23, 2009 Thanks very much thebadbad! You is bad! . TBH I often think about how lame my username is. It was just something random I came up with when creating my account, didn't know I would stay around for this long But the forum rules specifically say that the staff won't change usernames, so I guess I'm stuck with it. On topic, you're always better off checking the source code of your output when developing. Or alternatively set a text/plain content type header. Quote Link to comment https://forums.phpfreaks.com/topic/163435-solved-why-doesnt-this-echo-statement-output-what-one-might-expect/#findComment-862322 Share on other sites More sharing options...
carlos1234 Posted June 23, 2009 Author Share Posted June 23, 2009 Yeah...I nearly always check the source code of what is output. With the exception of when trying to debug things. When I am debugging...I just rely on the output as it appears on the screen of my browser. This is actually the first time I encountered this kind of quirk and it had me completely, 100% stumped. I kept looking and looking at the output, changing the code a bit here and there, looking and looking and just could not for the life of me figure out why part of the string I was trying to output kept disappearing on me. Thanks again! You bad (sorry I couldn't help it LOL)! Carlos Quote Link to comment https://forums.phpfreaks.com/topic/163435-solved-why-doesnt-this-echo-statement-output-what-one-might-expect/#findComment-862324 Share on other sites More sharing options...
thebadbad Posted June 23, 2009 Share Posted June 23, 2009 Haha, you're welcome Quote Link to comment https://forums.phpfreaks.com/topic/163435-solved-why-doesnt-this-echo-statement-output-what-one-might-expect/#findComment-862327 Share on other sites More sharing options...
pkedpker Posted June 23, 2009 Share Posted June 23, 2009 I had this problem before? want to know a fix for it sure here you go! $data = htmlentities($data); that function turns any HTML tag into a non-HTML tag but still viewable very neat function you should burn it into your brain's memory cell like I have.. yes in HTML source you'll see <hello> instead of <hello> but it will look nice.. in rendered mode Quote Link to comment https://forums.phpfreaks.com/topic/163435-solved-why-doesnt-this-echo-statement-output-what-one-might-expect/#findComment-862343 Share on other sites More sharing options...
thebadbad Posted June 24, 2009 Share Posted June 24, 2009 I'd rather set the header then. text/plain renders all printable whitespace characters, so you don't have to use <pre> tags when e.g. looking at an array passed through print_r(). Quote Link to comment https://forums.phpfreaks.com/topic/163435-solved-why-doesnt-this-echo-statement-output-what-one-might-expect/#findComment-862524 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.