vote up 24 vote down star
20

I really don't like mixing PHP and HTML. Mixing them makes it difficult to maintain both the PHP and the HTML, and it just makes sense to keep the two apart.

See also the question on whether PHP is a good enough templating system on its own.

What's the best way to do it?

flag

47 Answers

prev 1 2
vote up 0 vote down

Templating systems like Smarty and Zend are better than straight PHP when you want a common page layout over many separate pages, or want reusable chunks of parameterized content to appear in many pages. However you do it, the HTML/template files should be well-formed HTML that you can view and edit with HTML tools like Dreamweaver.

link|flag
vote up 4 vote down

Best practices for software development call for a full separation of business and display logic.

This particularly applies if you are building a large scale web application (even more so if you wish to release that application as a product and have your users/customers tailor it).

As noted by others, PHP was originally designed to be a templating system, but has evolved into a rich complex object oriented development language.

As a result, the best way to split your true presentation code from your business logic is to use a templating engine.

There are many of these.

Smarty is a popular and long-standing templating engine, which is somewhat "Pushing the boundries" and getting closer to PHP (i.e. becoming a language in it's own right). The Zend Framework includes it's own templating engine which takes a pure PHP5 OO approach using PHP as the formatting language in templates. And the SimpleT template takes a very light weight PHP4 approach to using PHP as a templating engine. There are other engines around such as PEAR's HTML Template Flexy class which provide a less "language like" templating engine.

The right choice for your application will depend on what you are doing, always remembering that the right choice might be no templating class but simply performing the logic in one code block followed by a full "template" of HTML populated with loops and variables in the next part of the file. If it's a small application with a limited lifespan, the saving in effort doing this in the short term may pay off against the larger effort required to fully implement templating.

link|flag
vote up 7 vote down

I tend to like Smarty. It's clean, at the cost of a few CPU cycles.

Rasmus Lerdorf, creator of PHP, has posted some slides from a presentation titled "Simple is Hard." Starting on slide 24, he compares static HTML and basic inline PHP to a number of PHP frameworks. Makes one want to try inline PHP again. Template syntax can be approximated in straight PHP while staying reasonably readable:

<html>
<head>
   <title><?php echo $template->title; ?></title>
</head>
<body>
   <?php foreach($items as $item): ?>
      <h2><?php echo $item->title; ?></h2>
      <div class="content">
        <?php echo $item->content; ?>
      </div>
   <?php endforeach; ?>
</body>
</html>

Using auto_prepend_value in your .htaccess can automate inclusion of your initialization script, which has the potential to reduce extraneous PHP in your "template." Definitely lots of ways to remove business logic from your HTML pages.

link|flag
1  
Cool presentation link and example, and yes it makes me want to try inline php again to. – levhita Sep 15 '08 at 17:55
vote up 9 vote down

Rather than try to seperate your php and html you should instead be separating your backend logic and display logic.

A templating system requires people to learn its syntax so why not just use php for it

link|flag
vote up 0 vote down

Personally I found the way that works for me is to work with XSL Transformations (XSLT).

Have one script containing your (PHP) logic outputting XML and one script produce the XSL to translate the XML to something visible. I usually implement this all on top of a homemade rewrite of Fusebox (the rewrite is purely because I don't use most of the features Fusebox offers and they do create overhead).

This might seem like a bit of overkill, especially on smaller projects, but I noticed a huge increase in the speed with which I can make modifications. Let's just say that my boss was pleased.

Imagine having the following information in an array, which you want to display in a table.

Array
{
  [car] => green
  [bike] => red
}

You easily create a script that outputs this information in XML:

echo "<VEHICLES>\n";
foreach(array_keys($aVehicles) as $sVehicle)
  echo "\t<VEHICLE>".$sVehicle."</NAME><COLOR>".$aVehicles[$sVehicle]."</COLOR></VEHICLE>\n";
echo "</VEHICLES>\n";

Resulting in the following XML:

<VEHICLES>
  <VEHICLE>
    <NAME>car</NAME>
    <COLOR>green</COLOR>
  </VEHICLE>
  <VEHICLE>
    <NAME>bike</NAME>
    <COLOR>red</COLOR>
  </VEHICLE>
</VEHICLES>

Now this is all excellent, but that won't display in a nice format. This is where XSLT comes in. With some simple code, you can transform this into a table:

<xsl:template match="VEHICLES">
  <TABLE>
    <xsl:apply-templates select="VEHICLE">
  </TABLE>
</xsl:template>

<xsl:template match="VEHICLE">
  <TR>
    <TD><xsl:value-of select="NAME"></TD>
    <TD><xsl:value-of select="COLOR"></TD>
  </TR>
</xsl:template>

Et voila, you have:

<TABLE>
  <TR>
    <TD>car</TD>
    <TD>green</TD>
  </TR>
  <TR>
    <TD>bike</TD>
    <TD>red</TD>
  </TR>
</TABLE>

Now for this simple example, this is a bit of overkill; but for complex structures in big projects, this is an absolute way to keep your scripting logic away from your markup.

link|flag
vote up 0 vote down

Use XSL instead of a templating system. Most templating systems combine PHP code and HTML in the same file. This means that even with lots of discipline, you are still going to put PHP and HTML together. If you use XSL, you'll never run into this problem. XSL gives you variables and conditionals and looping, in case you should need such constructs.

The other great thing about this approach is that if you ever decide to change the backend language (PHP to Ruby or Java, for instance), the front-end XML/XSL code never has to change. If you don't go around changing backend languages often, think about another scenario: one in which the back-end might be coded in two different languages for certain tasks. By keeping the view consistent in XSL, I think you've made your life that much easier.

link|flag
vote up 2 vote down

Smart is well respected but many people think implementing a macro language in the templates negates one of the main reasons for using a template system - separation of code and html. I would tend to agree with that and instead would point you at Tiny But Strong (www.tinybutstrong.com).

IMHO the great joy and strength of TBS is it is completely Dreamweaver compatible so if you use that templates can be designed WYSIWYG. If you're working with a designer or uses Dreamweaver (or you do yourself) TBS scores massively as they can be up and running modifying your basic templates within 5 or 10 minutes. Smarty breaks the WYSIWYG model so your designer (or you) has to learn that too and visualize what the clean html looks like instead of seeing it.

TBS doesn't come with an AJAX library, but it's relatively easy to add one (XAJAX works nicely) and ditto for whatever Javascript library/framework you'd like too. It also enforces a very simple, discrete, code/template model which fans of Zend and the like will look down on, but for 95% of websites this is a positive plus as this modularity pays off in ease of maintenance.

link|flag
vote up 3 vote down

Use an application framework like Zend, CakePHP, Symfony or CodeIgniter. These make it possible to divide your application into controllers and views, where the controllers are the code that retrieves the data you want to display and the views are what renders that data to HTML. The views contain a minimal amount of code. Some of the frameworks have a special templating language for conditionals and loops in the views, others just use PHP, but all are focused on keeping the amount of code in the views to a minimum.

link|flag
vote up 0 vote down

The best way to separate PHP Code and HTML is to follow MVC pattern. Adopting one of the PHP frameworks like Zend or CakePHP would be a good start. Using one of these frameworks would save you countless development hours and help you focus on meeting the business needs of the project.

link|flag
vote up 0 vote down

Back in the days when PHP4 was cutting edge, PHPlib's templating system served me well. It is simple to setup and really easy to use for basic things. See some examples here.

It is a bit old but it is stable and simple.

link|flag
vote up 0 vote down

PConroy's is a good answer - also make extensive use of CSS so that those elements are kept separate.

link|flag
vote up 4 vote down

You must use MVC (model-view-controller) pattern.

link|flag
1  
Well, I don't think you MUST. But its certainly a good practise, although overkill for small sites. – Splash Sep 15 '08 at 13:29
2  
Those who walk lockstep in beat to the MVC drum - you must use MVC; MVC is the way - worry me. Use the right tools and methods for the job. We've all heard about those people who have learned how to code web sites in Ruby on Rails but couldn't write a standard CLI Ruby app to save their life. – Garrett Albright Sep 16 '08 at 15:23
2  
I would not say MUST but generally one SHOULD if only because it will break the nasty PHP habit of mixed code & presentation. – Keltia Dec 24 '08 at 13:17
vote up 22 vote down

In my opinion, Smarty's over-complexity defeats the point in separating the logic. Most people abuse Smarty and just treat it as PHP. If you really want to make life easier, use a templating system that is limited to just conditionals and loops. It's all you need in reality.

link|flag
2  
I feel the same about Smarty's complexity. I tend to start doing things in PHP as I would do them in PHP, so I just went back to plain PHP. – Jrgns Sep 15 '08 at 13:29
4  
Would you care to name a templating system that is limited to just loops and conditionals? I am currently unaware of any but it might help this answer. – Wally Lawless Dec 24 '08 at 13:57
show 3 more comments
vote up 2 vote down

Template systems such as Smarty are a good way to go.

If this is overkill for your particular project, then the best solution is to separate the PHP logic and HTML presentation code into separate files, including the PHP files in your HTML, e.g.

index.php:

<?php
    include("user_functions.php");
    $user_data = get_user_data();
?>
<html>
    <body>
         <?php
         foreach($user_data as $user)
         {
              echo "User: ".$user."<br />";
         ?>

user_functions.php:

<?php
   function get_user_data()
   {
       ...
   }
?>

There is still some cross-over between PHP and the HTML, but it's at a minimum, and makes maintenance of the PHP functions much easier when you're not rooting through layers of HTML to get at it.

link|flag
vote up 0 vote down

You can use a template system like Smarty or you could use a framework like CakePHP.

link|flag
vote up 6 vote down

Personally, I live by the "conditionals and loops" rule: my HTML can contain only conditionals and loops in PHP code. This is a subjective rule, obviously, but it's a good principle. You can use PHP to format your HTML (to display a table row for every item in an array or to display a user's login name, for instance) and still keep your business logic completely separate.

However, if you're not happy with that, there's a host of possible solutions, including Smarty or XSL (might be overkill, depending on what you're doing).

link|flag
vote up 22 vote down

Use a templating system such as Smarty

link|flag
9  
With Smarty, all you're doing is adding a templating system on top of a templating system (PHP itself). You are still going to find code in your markup. Limiting yourself to just loops and conditionals is an option, but then you might as well go for true seperation in other forms (i.e. XSLT). – Twan Sep 20 '08 at 11:05
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.