Re: [PHP] export data to text file

2002-09-28 Thread Curtis Gordon
Why not write to a file on the server and generate a link to it? Collect info > write file > user downloads file Curtis Diana Castillo wrote: >okay, how can I write a file in csv format either to the browser or to the >server? If I use the Mysqladmin page I get all the fields, I just want some

RE: [PHP] export data to text file

2002-09-28 Thread John W. Holmes
> okay, how can I write a file in csv format either to the browser or to the > server? If I use the Mysqladmin page I get all the fields, I just want > some > of them. > Diana You can use the SELECT ... INTO OUTFILE query like someone else mentioned, and then use passthru() to send the file to th

Re: [PHP] export data to text file

2002-09-28 Thread Diana Castillo
okay, how can I write a file in csv format either to the browser or to the server? If I use the Mysqladmin page I get all the fields, I just want some of them. Diana -- See my web page: http://www.netrox.net/%7Ecastillo/ "Todd Pasley" <[EMAIL PROTECTED]> escribió en el mensaje [EMAIL PROTECTED]">

RE: [PHP] export data to text file

2002-09-28 Thread Todd Pasley
Hi If what you mean is... you want to be able to write to a file on the browsers computer, then please let us know if you find a way. To my knowledge, there is not any intended way to do this... you wouldn't want any old website to be able to manipulate your hard drive would you? It might be po