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!