Ver Mensaje Individual
  #8 (permalink)  
Antiguo 24/11/2007, 13:24
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 19 años, 1 mes
Puntos: 17
Re: Programacion modular

Tanto include como include_once, require, require_once, print y echo se pueden usar como instrucciones o funciones...

Llendo a tu problema, Italico, probá poner un nivel de error_reporting más alto, para ver si PHP está generando un error...

Código PHP:
<html>
<body>

<?php
error_reporting
(E_ALL);
include 
"hola_mundo.php";
?>

</body>
</html>