Separating HTML And PHP Code - Webmasters - Nairaland
Nairaland Forum › Science/Technology › Webmasters › Separating 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" { //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 ![]() 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. |
Free New E-book On HTML And CSS • Please Help Me With Php Code To Submit Picture To Database • Php Code For Search Bar • 2 • 3 • 4
Problem With My Enom Reseller! - How? • Top 10 Must Have Wordpress Plugins. • I Need Someone That Can Create A Professional Blog For Me
{ //does the uri contain the string, "topic=35738"?