Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/04/2006, 11:19
AmericoFox
 
Fecha de Ingreso: marzo-2006
Mensajes: 16
Antigüedad: 18 años
Puntos: 0
Re

Haber si este script resuelve tu problema...
<?php
$fichero_salida="out.html";
$tabla="<table width=200 border=1>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>";
$fp=fopen($fichero_salida,w);
fwrite($fp,$tabla);
fclose($fp);
if(!file_exists($fichero_salida)) die("Error en la Generacion del Archivo");
else echo "Archivo " . $fichero_salida . "Generado. <a href=" . $fichero_salida . ">Bajar Click Derecho y Guardar Destino Como...</a>";
?>
saludos