Jump to content

noob question, clean output


Stooney

Recommended Posts

I feel dumb asking, but what is the best way to have the source of a page (I'm talking php) come out clean and neat?  Like say I have a site where all the output is done via echo's throughout the scripts.  When the source is viewed it's just going to all be on one long line.  Is there some handy way to organize the output?  or should I just stick with \n at the end of each echo statement?

Link to comment
https://forums.phpfreaks.com/topic/89818-noob-question-clean-output/
Share on other sites

I was reading a few things such as

 

echo <<<EOT
//whatever here
EOT;

 

Basically to make sure people understand.  If I need to show a table of mysql results, there would be a while loop

while($row=mysql_fetch_array($result){
    echo '<tr><td>'.$row[0].'</td><td><'.$row[1].'</td></tr>';
}

 

When you view the source that's just going to be one long line of trs and tds.  I could add ."\n"; to the end of each echo, but it would output with the proper indentation in the source.  Just not sure how to go about making the source look like nice.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.