"echo" in functions or "echo" all page?
        Posted  
        
            by jasmine
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by jasmine
        
        
        
        Published on 2010-03-22T16:22:31Z
        Indexed on 
            2010/03/22
            17:31 UTC
        
        
        Read the original article
        Hit count: 494
        
php
Is this a good method to save to all index in a variable and then echo this? for example
<?php
    $txt='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
   <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9" />
   <link rel="stylesheet" type="text/css" href="css/style.css"/>
   <title>Untitled Document</title>
   </head>
   <body>
  <div class="wrapper">
      <div class="header">
        <h2>'.heaf_func().'</h2>
      </div>
      <div class="content">content</div>
      <div class="footer">footer</div>
  </div>
  </body>
  </html>';
  echo $txt;
?>
        © Stack Overflow or respective owner