![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
25/07/2008, 14:03
|
![Avatar de emiliodeg](http://static.forosdelweb.com/customavatars/avatar113967_1.gif) | | | Fecha de Ingreso: septiembre-2005 Ubicación: Córdoba
Mensajes: 1.830
Antigüedad: 19 años, 5 meses Puntos: 55 | |
Respuesta: Meter PHP en un .tpl bueno en el template vas a tenre html y el php va ir embebido
por ejemplo
<html>
<head>
<title><?php echo 'titulo de pagina';?></title>
</head>
<body>
<?php echo 'hola mundo';?>
</body>
</html>
luego a este tpl lo metes dentro de un php y listo
index.php
include('index.tpl'); |