[PHP] <title> From: Alexander Alexeev (tnt <email protected>)
Date: 12/19/00

My problem is how to print correct title 4 html page, when i could
know it only then i run some php code.

<html>
<head>
<title><?=$title?></title>
</head>
<body>
<?
  // some php code...
  ...
  ...
?>
</body>
</html>

The only way i think is to run some php code before <title> sent, and
store all output into variable. Instead of echo "bla-bla-bla" use
$output.="bla-bla-bla"

Dose anybody know a better way?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-general-unsubscribe <email protected>
For additional commands, e-mail: php-general-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>