Ver Mensaje Individual
  #6 (permalink)  
Antiguo 28/11/2008, 12:45
thezzin
 
Fecha de Ingreso: septiembre-2008
Mensajes: 350
Antigüedad: 15 años, 8 meses
Puntos: 31
Respuesta: dreamweaver y php

Hola
para poder ejecutar código PHP dentro de un file HTML tienes que agregar esto
Addhandler application/x-httpd-php .html .php #etc.
al fichero httpd.conf del Servidor Apache
Nota depende como tengas configurado tu sitio en ocasiones es necesario que
uses esto en el código html
<?php
ob_start();
?>

Codigo html aquí
<!--html-->
<?php
ob_end_flush();
?>