Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/09/2006, 11:14
Avatar de Erikfrancisco
Erikfrancisco
 
Fecha de Ingreso: noviembre-2003
Ubicación: Estado de México
Mensajes: 503
Antigüedad: 20 años, 5 meses
Puntos: 4
Intenta poner esto:

<?php
include ("plantillas/enlaces.html");
?>

o si quieres hacer referencia a un directorio anterior sería algo así:

<?php
include ("./plantillas/enlaces.html");
?>

o si los enlaces estan fuera del arbol de directorios sería algo así:

<?php
include ("$DOCUMENT_ROOT/../plantillas/enlaces.html");
?>

Espero te sirva de algo. Suerte