Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/09/2008, 18:44
manguiti
 
Fecha de Ingreso: junio-2007
Ubicación: Cádiz
Mensajes: 369
Antigüedad: 16 años, 11 meses
Puntos: 7
php dentro de html en dreamweaver

Hola, quería saber como configurar dreamweaver para que "desmarque" las etiquetas de apertura y cierre y todo el codigo php en un archivo .html al embeberlo...ya que no me lo reconoce....

Código HTML:
<?php

echo "prueba";

?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Index.html</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="141,60,*" frameborder="0" framespacing="0" >
<frame name="titulo" src="html/titulo.html" noresize scrolling="no" marginwidth="0">
<frame name="menu" src="html/menu.html" noresize scrolling="no" marginwidth="0">
<frame name="principal" src="html/principal.html" noresize>
</frameset><noframes></noframes>
</html>