|
Posted by Steve on 01/12/06 10:54
On Thu, 12 Jan 2006 00:10:02 +0000, Domestos wrote:
> Hi all,
>
> I was wondering if there is a standard when mixing PHP and HTML script on a
> page... and if there were any articles on this subject...
>
> i.e. do I make every page a .php page on my website and echo html when I
> need to or...
>
> should I make every page html and embed php when I need to..
>
> Obviously this only applies to pages where a mixture of php and html is
> required...
>
> for example... which is better or more standard....
>
> <html>
> <head>
> <title>title text</title>
> </head>
> <body>
> You name is <?php $name?>
> </body>
> </html>
>
> saved as index.html
>
> or
>
>
> <?php
> echo '<html>';
> echo '<head>';
> echo '<title>title text</title>';
> echo '</head>';
> echo '<body>';
> echo 'Your name is '.$name;
> echo '</body>';
> echo '</html>';
> ?>
>
> saved as index.php
>
> TIA
> Andy Mak
Personally, I'd create a function that returns a string that displays the
head, body, etc, so I can write
<?
echo html ( head( title ( "title text" ) ) .
body ( "Your name is $name" ) );
?>
I detest the messy embedding of php in html, it makes stuff almost
impossible to debug.
But then that's my point of view, and I am/was a C programmer and fan of
Dijkstra at heart. I always read what Mladen posts, but he disagrees
completely with me on this.
So there you have it (:
Steve
[Back to original message]
|