vote up 24 vote down star
21

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 2 vote down

If you use REST techniques - so that POST requests do work and then send the browser a 303 redirect to GET to view the results, you quickly achieve two things:

  1. The browser back button behaves itself - no more duplicated actions.

  2. Your business logic and views get nicely separated.

link|flag
vote up 0 vote down

Like Lucas Oman's answer. I am actually wondering the same thing as I am now getting into Classic ASP. Mixing the code and the HTML just seems like an ugly mess and difficult to maintain. So it seems like the best suggestions so far are:

MVC

Smarty

XSLT

Zend

There is going to be alot of debate here as PHP works both for people coming from the Comp Sci Camp and people coming from the designer that learned HTML camp. Both are going to want to create their sites differently.

link|flag
vote up 1 vote down

It's good practice to separate you data model, your business logic, and your presentation layer. The most popular and talked about way to do that is to use and Model-View-Controller (MVC) design pattern. There are other design patterns such as the Presentation-Abstraction-Control (PAC) design pattern. While this pattern is not as widely talked about it is regularly used.

Most of the frameworks and content management systems use some form of this right now. If you start digging through the code of systems like symfony, cakephp, drupal, joomla, and others you'll see these types of systems in action.

link|flag
vote up 0 vote down

+1 for CodeIgniter MVC

link|flag
vote up 0 vote down

For most PHP code, a strict MVC split is 10x more abstraction then necessary. A major annoyance. Simple templating (basic conditional and loops) is perfectly adequate and much simpler to implement. Leave the heavy duty MVC frameworks to consultants milking large Java projects for all the dollars they can.

Obviously, if you're a consultant and paid by the hour, please maximize the size of your framework, it'll maximize your bottom line too. Client be damned.

I realize that project XYZ absolutely needed MVC to even be comprehensible by mere mortals, but why was it coded in PHP?

link|flag
vote up 0 vote down

I've recently read about TinyButStrong and I checked out their website. TinyButStrong seems to be much easier to use than Smarty and also seems quite powerfull. But I'm just recommending what I haven't tested myself yet. Have a look: http://www.tinybutstrong.com/

link|flag
vote up 6 vote down

What I have done in the past is to generate all the data for a page and store in hash array:

$data['#title#'] = 'Page title';
$data['#textcontent#'] = ' Yadda yadda yadda';

Grab a seperate bit of text that is the HTML with placeholders in it:

$html = '<html><title>#title#</head>.....'; etc

Then merge the two with a simple command:

$html = str_replace(array_keys($data),array_values($data),$html);

The print or store in cache.

link|flag
show 3 more comments
vote up 2 vote down

Remember that despite the constant dogma about keeping business logic and presentation separate, there is such a thing as presentational logic.

Don't be afraid to use inline PHP logic for tasks like sorting and arranging data for display on the page. If your "business logic" modules are full of helper functions with little bits of presentational logic, you are doing it just as wrong as if you were spewing out business logic in the middle of the templates.

Be suspicious of 'advanced' templating languages that limit you to outputting simple attributes using a microlanguage, instead of letting you use the full power of PHP. This is inflexible dogma which only constrains you; you will end up polluting your business logic with presentational concerns that the templating language won't let you express. You can do perfectly good 'readable' templates with PHP as long as you use it tastefully - for example see the example posted by Adam Backstrom for a good way of keeping track of your structures using indentation.

(Unfortunately, that example - along with every other one posted here so far - is full of the HTML-injection security holes that PHP is so famous for. Any time you output a bunch of normal text into an HTML page, you must use htmlspecialchars! One way to make this slightly less onerous is to define a function that does echo(htmlspecialchars($s)) and call it something nice and short like 'h', so that you can put:

<?php h($item->title) ?>

in the template.)

link|flag
vote up 1 vote down

My way of doings is the same as described above. Add inbetween is the easiest. And if I need to insert things into a snippet of code I create multiline variables with placeholdes that I replace later.

<?php
$snippetCode = <<<html
<a href="%URL%" alt="%ALT%">%TEXT%</a>
html;

echo str_replace(array('%URL%','%ALT%','%TEXT%'),array('http://stackoverflow.com', 'Stack Overflow', 'This way to Stack Sverflow'),$snippetCode);
?>
link|flag
vote up 0 vote down

Write your own templating object or use one like Savant, my personal favorite. Do not use another templating language. While PHP is much more than a templating language, it is still excellent for templates. All you really need is an object that defines a scope for the template so it only has access to the variables and objects you pass to it.

Here's the simplest possible class for your views that will accomplish this:

class View {
  protected static $VIEW_PATH = '/wherever/your/views/are/';

  public function assign($name, $value) {
    return $this->$name = $value;
  }

  public function render($filename) {
    $filename = self::$VIEW_PATH . $filename;
    if (is_file($filename)) {
      ob_start();
      include($filename);
      return ob_get_close();
    }
  }
}

(Obviously, there's a lot more you can do, like error handling for missing views.)


Choose a set of rules to follow for your views. Here are mine:

  • No assignment, ever.
  • No breaking the Law of Demeter.
  • Control structures (while, for loops, if) are allowed.
  • Control structures should use the alternative syntax so they appear more like HTML tags, and to make it easier to pick out structure ends.
  • Anything besides control structures or methods without side effects on passed objects is disallowed.
link|flag
vote up 22 vote down

To separate your PHP and HTML as much as possible you need a small template class and a small set of rules to follow.

  • Function calls should only be made to render templates or format data like date();
  • Only use foreach, no for or while loops
  • If statements should only check a variable for true. All boolean logic should be pre-computed.
  • Using else is ok.
  • If you need to alternate a color either pass boolean values with your array for each row or use ($i++%2). Then in your view you will use an inline if

    < div class='menu < ?=($link['alternate'])?'white':'grey'?>'>

  • again if you need to check for the beginning or end of a list pass a flag in the associate array that your currently iterating through.

To make simple or advanced web site you need something that can hold data and a file path. With the below classes you create a new Template object and bind some data to it as it is created.

$main = new Template('mainView.php', array('title' => 'example page'));

Now in your view file mainView.php you access the title like this.

<?= $title; ?> // php 4 version
<?= $this->title; ?> // php 5 version

The reason you use an object instead of just an include file is to encapsulate data. For example:

$main = new Template('mainView.php', array(
    'title' => 'example page',
    'leftMenu' => new Template('linkView.php', array('links' => $links)),
    'centerContent' => new Template('homeView.php', array('date' => date())),
));

$main->render();

mainView.php

<html>
  <head>
    <title><?= $this->title; ?><title/>
  </head>
  <body>
    <div id='left'><? $this->leftMenu->render(); ?></div>
    <div id='center'><? $this->centerContent->render(); ?></div>
  </body>
</html>

Below are minimal template classes for both php 4 and 5. Here is the link to the full featured version I use. http://pastie.org/275127

// PHP 4
class Template {
    var $args;
    var $file;

    function Template($file, $args = array()) {
    	$this->file = $file;
    	$this->args = $args;
    }

    function render() {
    	extract($this->args);
    	include $this->file;
    }
}

// PHP 5
class Template {
    private $args;
    private $file;

    public function __get($name) {
    	return $args[$name];
    }

    public function __construct($file, $args = array()) {
    	$this->file = $file;
    	$this->args = $args;
    }

    public function render() {
    	include $this->file;
    }
}
link|flag
vote up 0 vote down

I like to have my php file such as "recipe.php" and then it handles the different actions concerning that page (ie. view, create, list) in the logic. After it decides which path to go down, it "includes" the correct html code which is stored in something like ./html/recipe.view.php or whatever. This allows you to handle a lot of different actions within a single "page" without a ton of clutter. You can still use php inside your html "template" so its very usable as well. I think people over complicate things waaay too much and I've found that this method works very well, especially for fairly simple sites.

link|flag
vote up 0 vote down

I really like the HAML syntax. I've played around with phpHaml, and so far I like it a lot. There's also another implementation of HAML in PHP called Phammable, but i haven't tried that one yet.

If you're building a large project i would recommend you to look at the MVC paradigm, either writing your own implementation of it or look at some of the open source ones.

link|flag
vote up 0 vote down

I'll echo the concept of separating what's done in a 'template' instead of using an entirely different template 'language'. After using a few different template systems (including smarty and flexy), I've found just using inline php (using the Zend MCV system) very refreshing. Inline PHP really is a good templating language, and I don't have to keep thinking, "what's the smarty foreach syntax?"

Of course, then it's up to you to make sure the templates are only templates. It also up to you to determine where you draw that line. Personally, I'm okay with the template formatting data (like a timestamp), while others may only want the template to handle conditionals and loops. But when someone starts throwing SQL in the template, I think they've missed the point.

link|flag
vote up 2 vote down

I agree with the answers here suggesting that you avoid using anything besides PHP for templating. And of course, there is such a thing as presentation or display logic. That said ...

You can separate your PHP and HTML into separate files -- putting HTML files into a views or templates directory -- depending on how you want to set things up. If you do it this way, the last line of any PHP script using that template or view can just be an include statement.

If you keep things in the same file, that can work too, if the project isn't too complicated. In this case, instead of an include statement, you'd have two chunks of stuff, PHP to start and HTML to follow.

Of course, you will need to pepper your HTML with echos, and sometimes you will need some logic right there along side your HTML, but try to keep it to a minimum. There's often no way around it when you are presenting results, say, from multiple rows in a database. Sometimes you can put the WHILE chunk in a nested sub-template.

One thing is don't echo HTML with PHP. Yuck. You will regret this.

I try to avoid using curly braces around chunks of HTML too. Not always feasible, but a good rule to follow.

link|flag
vote up 0 vote down

Use OO PHP. It helps a lot especially when you use HTML forms. That way you minimize the HTML in the code and make it more readable and structured.

link|flag
vote up 0 vote down

You can use the "Smarty" template engine to sepatate the HTML and PHP code.

Its easier to apply all the css styles to the html files, keeping it separate from the PHP code.

link|flag
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.