Link to home
Start Free TrialLog in
Avatar of NEComputer
NEComputerFlag for United States of America

asked on

What is the best way to output html and php variables using php?

My question is based on opinion on what is the best and easiest way to output html that is mixed with php variables within a php script. As a beginning programmer I was always told to use  something like this:

<?PHP echo '<p>My name is '.$name.'! And I live in '.$place.'.</p>';?>

This way doesn't seem to be the best or easiest way to get an html output page and this way is also hard to debug. What other ways are available that are easier and considered the more accurate way to output html? I have seen some functions but don't know what ones are right for me. Any guidance would be well appreciated.
Avatar of Hube02
Hube02
Flag of United States of America image

As you say, this is opinion, and opinions are like... well...

anyway, I like the following myself, assuming we are in php

// php code here
?>
  <p>My name is <?php echo $name; ?>! And I live in <?php echo $place; ?>.</p>
<?php
// more php code here


There are a few reasons I like this, most of which is due to the fact that I use DreamWeaver as my coding environment. This allows me to see what is what, and makes finding errors in both php and html easier due to color coding. Many other editors are the same.

Another is that I simply like to keep HTML as HTML and not clutter up my php code with a lot of echo statements to output HTML. The only time I will generally place HTML into strings is if I am building something that needs to be echoed later, or if I am using a function to build a string that is returned. As a quick example, when validating a form I might have a variable named $form_error_messages and I might place all the error messages into this string and then echo them out all with

echo $form_error_messages.

but again, this is only my opinion and what I consider to be good coding practices.

ASKER CERTIFIED SOLUTION
Avatar of Roger Baklund
Roger Baklund
Flag of Norway image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The reason for my coding style (above) for long lines with much html is clearer when there actually is much html... I also switch between using ' and " depending on the content and context of the strings. Html attributes must be within double quotes, javascript string literals must be within single quotes.  I have expanded your example to illustrate:
echo '<div class="presentation">'.
       '<p>'.
         'My name is <a href="mailto:'.$person->email.'" onmouseover="'.
            "Tooltip('Click to send me an email!')".
            '">'.htmlentities($person->name).'</a>! '.
         'And I live in <a href="http://maps.google.com/maps?q='.
           urlencode($address['city']).','.
           urlencode($address['country']).
           '" onmouseover="'.
             "Tooltip('Click to find {$address['city']} on google maps!')".
           '">'.htmlentities($address['city']).'</a>.'.
       '</p>'.
     '</div>';

Open in new window

In larger projects with many involved coders and web designers, it is best to NOT mix html and code. Then the code might look like something like below, the template contains "<p>My name is $name! And I live in $place.</p>".
echo ResolveTemplate(
  GetTemplate('PersonalPresentation'),
  array(
    'name' => htmlentities($person->name),
    'place' => htmlentities($address['city'])
    )
  );

Open in new window

Avatar of NEComputer

ASKER

cxr could you close the quotes and solve the problem when you mention html attributes must use double quotes? Wouldn't it look something like this:
echo "<p>My name is {$person->name}! And I live in {$address['city']}. "\This is my quote."\</p>";

Open in new window

Yes, you can escape the double quotes within the double quotes... but I think it is harder to read and easy to get wrong...  you must have the backslash first, like this \", not "\

Like this:
echo "<p>My name is {$person->name}! And I live in {$address['city']}. \"This is my quote.\"</p>";

Open in new window

Thanks you for your opinion. Your assistance is greatly appreciated.