Re: [PHP-DB] Convert HTML Table to Tab Delimited .TXT file

2004-05-24 Thread Mark
--- [EMAIL PROTECTED] wrote: Howdy All, I've PHP / Apache / MySQL running on a Linux machine where a GUI allows an administrator to track changes made to computers on our intranet. I've been asked to add an 'history' button so that all changes made to one or more computers can be put

Re: [PHP-DB] Convert HTML Table to Tab Delimited .TXT file

2004-05-24 Thread dpgirago
Wow, thanks. I'm gonna give this a try right now. dave Mark Weinstock at [EMAIL PROTECTED] recently wrote... Maybe I'm missing something (quite possible), but you can make the work happen autogically by using http headers. header(Content-type: application/octet-stream);

Re: [PHP-DB] Convert HTML Table to Tab Delimited .TXT file

2004-05-24 Thread dpgirago
I've used the header function before for redirection with success, but in the current situation I'm not sure where to put the 2 calls to it. I'm making the web page on the fly -- querying the dB, writing out the string including html tags and the query result, using fopen to create the file,

Re: [PHP-DB] Convert HTML Table to Tab Delimited .TXT file

2004-05-24 Thread Mark
--- [EMAIL PROTECTED] wrote: I've used the header function before for redirection with success, but in the current situation I'm not sure where to put the 2 calls to it. I'm making the web page on the fly -- querying the dB, writing out the string including html tags and the query