Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/02/2003, 20:36
chapu
 
Fecha de Ingreso: mayo-2002
Ubicación: Mendoza ebria y montañosa
Mensajes: 165
Antigüedad: 22 años
Puntos: 0
Lo que está mal en esas líneas es la sintaxis HTML:

Cita:
<html>
<head>
<body>
<? php
echo "prueba";
?>
</body>
</head>
</html>
debería de ser así:

Código:
<html>
<head>
  <title>E título de la página</title>
</head>
<body>
<?php
echo "prueba en PHP";
?>
</body>
</html> 
Espero te sirva,
un saludo y dale para delante!
__________________
chapu