PHP include layout template /templating system
PHP include layout template /templating system
Out of context: Reply #6
- Started
- Last post
- 10 Responses
- vaxorcist0
usually I do something like:
<?
$headline = "helo world";
$seo_headline="whatever";
include("head.php");
?>stuff.....
<?
include("foot.php");
?>