
27/11/2003, 16:40
|
| | Fecha de Ingreso: diciembre-2002 Ubicación: Santiago de Chile
Mensajes: 350
Antigüedad: 22 años, 3 meses Puntos: 0 | |
gracias pero al final lo hice de esta manera
<?php
$motd = "/dir/archivo.html";
$file = fopen("$motd", "r");
$content = fread($file, filesize($motd));
$content2 = str_replace("\n", "<br>", $content);
fclose($file);
print $content2;
?> |