Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to conditionally output HTML to generate a page, so what's the easiest way to echo multiline snippets of HTML in PHP 4+? Would I need to use a template framework like Smarty?

    echo '<html>', "\n"; // I'm sure there's a better way!

    echo '<head>', "\n";
    echo '</head>', "\n";

    echo '<body>', "\n";
    echo '</body>', "\n";

    echo '</html>', "\n";
share|improve this question

6 Answers

up vote 74 down vote accepted

You can do a few things:

In Between PHP Tags

if(condition){

?>

<!-- HTML here -->

<?

}

In Echos

if(condition){

echo "HTML here";

}

With echos, if you wish to use double quotes in your HTML you must use single quote echos like so:

echo '<input type="text">';

Or you can escape them like so:

echo "<input type=\"text\">";

As for template systems, Smarty is good for separating the design (Presentation Logic) from the coding (Business Logic). It makes the code a lot cleaner and easier to maintain.

If you have any more questions feel free to leave a comment.

Best of Luck!!

share|improve this answer
What an excellent solution for HTML within conditions. – Jarvis Jul 8 '09 at 20:39
Oh, and thank you so much! – Jarvis Jul 8 '09 at 20:42
No problem! Good Luck!! – Chris B Jul 8 '09 at 20:47
4  
Shouldn't the "/* HTML here */" REALLY be a "<!-- HTML here -->" ? ;) – fiXedd Jul 8 '09 at 20:50
1  
Thanks, @Chris B. it helped me. With echos, if you wish to use double quotes in your HTML you must use single quote echos like so: I was actually missing this. – Ayush Mishra Jan 2 at 9:13
show 1 more comment

try like this:

$variable = <<<XYZ
<html>
<body>

</body>
</html>
XYZ;
echo $variable;
share|improve this answer
8  
php supports heredocs? nice. – seth Jul 8 '09 at 21:06
what does "XYZ" mean here ? – MhdSyrwan Sep 22 '11 at 16:18
1  
@MhdSyrwan just random chars, you can read more here php.net/manual/en/… – lfx Sep 23 '11 at 18:22

You could use the alternative syntax alternative syntax for control structures and break out of php:

<?php if ($something): ?>
    <some /> <tags /> <etc />
    <?=$shortButControversialWayOfPrintingAVariable ?>
    <?php /* A comment not visible in the HTML but is a bit of a pain to write */ ?>
<?php else: ?>
    <!-- else -->
<?php endif; ?>
share|improve this answer
@Jeremy: This is probably the best, most direct way assuming you are not looking for something more... Are you looking for something more? – Frank V Jul 8 '09 at 20:30
Yes, specifically the ability to use PHP comments in between the HTML, comments that will not be echo'd. – Jarvis Jul 8 '09 at 20:33

Basically you can put HTML anywhere outside of PHP tags. It's also very beneficial to do all your necessary data processing before displaying any data, in order to separate logic and presentation.

The data display itself could be at the bottom of the same PHP file or you could include a separate PHP file consisting of mostly HTML.

I prefer this compact style:

<?php
    /* do your processing here */
?>

<html>
<head>
    <title><?=$title?></title>
</head>
<body>
    <?php foreach ( $something as $item ) : ?>
        <p><?=$item?></p>
    <?php endforeach; ?>
</body>
</html>

Note: you may need to use <?php echo $var; ?> instead of <?=$var?> depending on your PHP setup.

share|improve this answer

I am partial to this style:

  <html>
    <head>
<%    if (X)
      {
%>      <title>Definitely X</title>
<%    }
      else
      {
%>      <title>Totally not X</title>
<%    }
%>  </head>
  </html>

I do use ASP-style tags, yes. The blending of PHP and HTML looks super-readable to my eyes. The trick is in getting the <% and %> markers just right.

share|improve this answer
Are ASP tags compatible with PHP 4+? – Jarvis Jul 8 '09 at 20:35
2  
Yes but get em while they last - they're being removed from PHP (not sure which version... if they haven't gone already) – Greg Jul 8 '09 at 20:44

Another approach is put the HTML in a separate file and mark the area to change with a placeholder [[content]] in this case. (You can also use sprintf instead of the str_replace.)

$page = 'hello world';
$content = file_get_contents('html/welcome.html');
$pagecontent = str_replace('[[content]]',$content,$page);
echo($pagecontent);

Alternatively you can just output all the php stuff to the screen captured in a buffer, then write the html, then put the php output back into the page.

It might seem strange to write the php out, catch it, then write it again, but it does mean that you can do all kinds of formatting stuff (Heredocs etc),& test it outputs correctly without the hassle of the page template getting in the way. (Joomla CMS does it this way, BTW) ie:

<?php
ob_start();
echo('hello world');
$php_output = ob_get_contents();
ob_end_clean();
?>
<h1> My Template page says </h1>
<?php
echo($php_output );
?>
<hr>
template footer
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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