doctortim Posted December 13, 2007 Share Posted December 13, 2007 Hi Guys I have presented my problem here: http://www.phpfreaks.com/forums/index.php/topic,171584.0.html And essentially my advice was to use the print function at the beginning of every line of html. I haven't tried it yet (I will need a massive code rewrite in many places), so I just want to know WHY this would fix my problem? Is print required because the html I want to output is within a loop? A little more info about the print function in the context of my original problem would be great. Thanks to all in advance who help. Link to comment https://forums.phpfreaks.com/topic/81440-why-will-print-help-me/ Share on other sites More sharing options...
revraz Posted December 13, 2007 Share Posted December 13, 2007 print is the same thing as echo Link to comment https://forums.phpfreaks.com/topic/81440-why-will-print-help-me/#findComment-413418 Share on other sites More sharing options...
Xyphon Posted December 13, 2007 Share Posted December 13, 2007 Print is the same as echo. Example, echo "Hi"; will come out as Hi. print "Hi"; Will come out as Hi. Link to comment https://forums.phpfreaks.com/topic/81440-why-will-print-help-me/#findComment-413421 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.