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

1 2 next
vote up 37 vote down check

Sheer, iron-willed discipline.

link|flag
1  
I'm accepting this answer, as it's needed in all the other methods mentioned! – Jrgns Mar 6 at 13:45
show 1 more comment
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
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 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

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 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 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 20 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

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 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 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 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 2 more comments
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 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

+1 for CodeIgniter MVC

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

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

@[levhita]:

At the end of the day, the Presentation or View part of a project must have some form of code or templating system in it, as there is variables that need to be outputted, template files to be included, etc etc etc.

Perhaps the question should then be what code and how much code is allowed in the Presentation / View part of a framework / project.

link|flag
vote up 1 vote down

Like levhita, I think you're asking the wrong question. There's nothing fundamentally wrong with mixing HTML code with your PHP code. In fact, it's usually difficult to get around. Even using an MVC framework, there's often a need to mix the two. When iterating over a set of values to be output, for example. To do that, you either create an HTML in your controller (awkward) or include presentation logic in your view. In my opinion, including presentation logic in your view is perfectly acceptable. It is, after all, presentation logic and not business logic.

If your distaste is aesthetic, then try the alternate syntax. I prefer than when mixing tag-based markup with PHP. It just looks cleaner and I find it easier to read.

link|flag
vote up 0 vote down

Check out this article: Template Engines

link|flag
vote up 0 vote down

A good MVC framework that I have come across is Kohana It is simple to use and easily extensible. Doesn't require any server side includes.

I will be using it in one of my web projects.

link|flag
vote up 3 vote down

I like to use alternate syntax when working with html. For example:

<div class="profile-header">
    <div class="left">Blog</div> 
	<?php if($profile_data['userid']==$userid):?>
		(<a href="/<?=strtolower($profile_data['username']);?>/edit/blog">New Blog Post</a>)
	<?php else:?>
		(<a href="/rss/<?=strtolower($profile_data['username']);?>/">RSS Feed</a>)
	<?php endif;?>
</div>

It really does help keep the code clean, and to a designer, it shouldn't be too hard to pick up. not only that, but it's similar to the way Wordpress templates work.

link|flag
vote up 2 vote down

Separating your code into MVC should NOT be an automatic first step. There are many cases where a simple procedural framework makes much more sense.

I agree with @AdamBackstrom that inline PHP is simpler and more effective than placing one templating system (such as Smarty) on top of another templating system (PHP). If you don't take advantage of PHP's existing templating system, why are you using the language at all?

link|flag
vote up 22 vote down

PHP itself was born as a template language with a scripting capabilities. Using Smarty or any other template language means running an interpreted language on top of an interpreted language, which doesn't sound like a good idea if you think about it. At the end of the day, Smarty templates are still "compiled" to PHP code (which is sometimes ineffective and always unreadable), so it might be wiser to just use PHP and not to learn another language.

Starting there, one should limit the "HTML code" to echo(), basic loops and conditionals, strengthtened maybe with function calls with no side-effects. Calculating MD5 hash inside HTML template to get a link to gravatar image is ok, executing some SQL is not. All data to be rendered inside PHP templates should already be prepared by another module, unless it is trivial to get inside your "view" part.

The MVC pattern is a good way of thinking about your code. A framework, such as CakePHP, could offer a powerful platform to build on, and provide some hints on organizing code if all its complexity is an overkill for your task.

link|flag
vote up 0 vote down

One of the things about php being coupled with html is that together they make a very quick development language and php does what does reasonably well, however, if you're looking to do a small project using a templating system is a bit overkill.

The languages are so tightly couple that it doesn't really make sense to seperate them too much. Too much seperation and you lose the maintainability in terms of debugging simple errors in one system or the other. Too little and like you say you have the problem of code being hard to read. At the end of the day you have to find what works best for you, are you going to be happiest dealing with a little bit of a cross between .php files containing html or do you not wantt o have to look at html at all whilst doing php and visa versa? (the latter being very difficult to achieve imo)

link|flag
vote up 5 vote down

From my point of view you are asking the wrong question, the question should be: ¿How do I separate my Business Logic from the Presentation?

And the answer is, use a Model-View-Controller Framework (or make your own architecture around this concept).

Use PHP strong Object support and make nice classes that obtain data from your database, this classes should also handle the saving of this same data. This classes are called "Models".

Make a nice class that handle the loading of a template (might be a simple "include template.php" or a full [smarty][1] implementation). The template should only do conditionals and loops. This is the "View"

You still need a third element, a php file that will load the model and will send the data to the view and viceversa (this is where the nasty code usually lives), is called the "Controller"

The idea is to create reusable components, you can make your own basic MVC architecture or use one of the nice Frameworks out there like Zend's or Cake PHP.

The basic idea is that if you just split PHP and HTML, you are only splitting the mess in two bedrooms, leaving the corridor with much bigger mess.

Think like a store, you have your front that display products(usually in a very creative way), a business man in the middle handling clients, and a store room in the back with everything really really ordered. [1]: http://www.smarty.net/

link|flag
vote up 0 vote down

Use a clientside templating system (like Chain http://javascriptly.com/2008/08/a-better-javascript-template-engine/ ). Your templates will be plain simple HTML and you can fetch all your data from your server using JSON; you can use PHP serverside to just do business logic (no templating).

-- MV

link|flag
show 1 more comment
vote up 0 vote down
function template($fn) {
    return "echo <<<END\n".str_replace(array(''), array("END;\n", "echo <<<END\n"), file_get_contents($fn))."\nEND;\n";
}

Then you can create templates like example.tpl that would contain "hello $what" and render that template from code like so:

$what = "world"
eval(template('example.tpl'));

And it displays "hello world".

link|flag
vote up 0 vote down

You can write your own basic template system with something like:

function Render($Template, $Data) {
   extract($Data);
   include($Template);
}

Extract() is used to create local variables from an associative array that can be used in template file. You could also automatically escape your data.

In your template file you can use <?= $Foo ?> to render a variable. Short tags are not portable but you can use your favorite build tool to replace <?= to <?php echo before deploying your application.

For loops and conditions, your can use the alternative syntax:

<? if ($Foo): ?>
...
<? endif; ?>
link|flag
show 2 more comments
1 2 next

Your Answer

Get an OpenID
or

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