₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,151 members, 8,420,571 topics. Date: Friday, 05 June 2026 at 02:38 AM

Toggle theme

Separating HTML And PHP Code - Webmasters - Nairaland

Nairaland ForumScience/TechnologyWebmastersSeparating HTML And PHP Code (1386 Views)

1 Reply

Separating HTML And PHP Code by rock2(op): 1:50pm On Jan 13, 2007
This is for our web developers. How do you seperate your code(PHP) from the HTML design. I mean making them independent of each other. Thanks.
Re: Separating HTML And PHP Code by my2cents(m): 2:35pm On Jan 13, 2007
I separate my code (not limited to PHP) from HTML in one of 2 ways:

1) use of includes (e.g. require_once()):

<?php require_once('header.php'); ?>
<table>
<tr>
<td>
Hello Nairaland!!
</td>
</tr>
</table>
<?php require_once('footer.php'); ?>

2) beginning my code tabbed over once from the line and my HTML tabbed over 2ce from the line. In other words, take PHP for example:

<?php
$uri = $_SERVER['REQUEST_URI']; //to obtain what comes after www.nairaland.com in address bar above

if(strchr($uri, "topic=35738"wink { //does the uri contain the string, "topic=35738"?
?>
<table>
<tr>
<td>
Hello Nairaland!!
</td>
</tr>
</table>
<?php
} else {
?>
<table>
<tr>
<td>
Hello Nigeriaworld!!
</td>
</tr>
</table>
<?php
}//if
?>

Of course, for #2, I could hv printed out the strings without using tables. I just wanted to illustrate indentation tongue

I hope this helps
Re: Separating HTML And PHP Code by jacktoco: 5:44pm On Oct 01, 2018
Lovely information, I hate file like .tpl where html and php is all together.
1 Reply

Free New E-book On HTML And CSSPlease Help Me With Php Code To Submit Picture To DatabasePhp Code For Search Bar234

Problem With My Enom Reseller! - How?Top 10 Must Have Wordpress Plugins.I Need Someone That Can Create A Professional Blog For Me