Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/02/2012, 17:22
vitimgm01
 
Fecha de Ingreso: julio-2008
Mensajes: 12
Antigüedad: 15 años, 9 meses
Puntos: 1
Problema Código PHP y Servidor

Hola, estoy subiendo mi aplicación al servidor y pongo esto:
Código HTML:
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Prueba</title>
    </head>
    <body>
	<?php
	
	echo "Prueba";
	?>
    </body>
</html> 
y el codigo fuente que devuelve es esto:
Código HTML:
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Prueba</title>
    </head>
    <body>
	<!--?php
	
	echo "Prueba";
	?-->
    </body>
</html> 
Alguien sabe porque pasa esto? El servidor se supone que tiene php....

Gracias!