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
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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.