Un ejemplo simple con variables en un templete html (te va a servir mucho, lo tome del segundo comentario de la pagina oficial de php en la seccion variables
http://ar2.php.net/manual/es/language.variables.php ):
Código PHP:
El codigo PHP:
variables.php:
<?php
$SYSN["title"] = "This is Magic!";
$SYSN["HEADLINE"] = "Ez magyarul van"; // This is hungarian
$SYSN["FEAR"] = "Campanas en mi corazon";
?>
index.php:
<?php
include("variables.php");
include("templete.html");
?>
El templete:
templete.html
<html>
<head><title><?=$SYSN["title"]?></title></head>
<body>
<H1><?=$SYSN["HEADLINE"]?></H1>
<p><?=$SYSN["FEAR"]?></p>
</body>
</html>
esto es simple, practico y rapido.