Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/10/2003, 12:20
atoon
 
Fecha de Ingreso: agosto-2002
Ubicación: Sí
Mensajes: 49
Antigüedad: 21 años, 8 meses
Puntos: 0
Creo que no funciona. Por si acaso, este codigo está en home

<?
if(!file_exists("$home.htm"))
{
if(!file_exists("$home.php"))
{
include("error404.htm");
}else{
include("$home.php");
}
}else{
$fp=fopen("$home.htm","r");
$seccion=fread($fp,filesize("$home.htm"));
echo"$seccion";
}
?>