mtran
04-27-2007, 02:26 PM
I created a template page which will be included in every page of the site.
<?php
echo '<html>';
echo '<head>';
echo '<title>'.$title.'</title>';..............
?>
My question is when I view source of the individual pages - everything is displayed in a long string like this:
<html><head><title>.....</title>...................................
How to make it displayed normally with line breaks - just the code in view source, not the actual content.
<html>
<head>
<title>...
I looks easy but I don't know. Thanks.
<?php
echo '<html>';
echo '<head>';
echo '<title>'.$title.'</title>';..............
?>
My question is when I view source of the individual pages - everything is displayed in a long string like this:
<html><head><title>.....</title>...................................
How to make it displayed normally with line breaks - just the code in view source, not the actual content.
<html>
<head>
<title>...
I looks easy but I don't know. Thanks.