Re: AW: [PHP] export mysql to csv prob

2005-02-11 Thread Redmond Militante
tp://pear.php.net/package/Spreadsheet_Excel_Writer > > > >I found out that it is faster with huge data sets on my system. > > > >Greetings > >Mirco > > > >-Ursprüngliche Nachricht- > >Von: Redmond Militante [mailto:[EMAIL PROTECTED] > >

Re: [PHP] export mysql to csv prob

2005-02-11 Thread Redmond Militante
Von: Redmond Militante [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 11. Februar 2005 00:02 > An: php-general@lists.php.net > Betreff: [PHP] export mysql to csv prob > > hi > > i have a script that exports the result of a mysql query to a csv file > suitable for downlo

Re: AW: [PHP] export mysql to csv prob

2005-02-11 Thread Richard Lynch
> i have a script that exports the result of a mysql query to a csv file > suitable for downloading > > the code looks like > $result = mysql_query("select * from user,mjp1,mjp2,mjp3,mjp4"); > while($row = mysql_fetch_array($result)) { > $csv_output .= "$row[userid] $row[firstname] $row[lastname]\

Re: AW: [PHP] export mysql to csv prob

2005-02-11 Thread Tom
eneral@lists.php.net Betreff: [PHP] export mysql to csv prob hi i have a script that exports the result of a mysql query to a csv file suitable for downloading the code looks like $result = mysql_query("select * from user,mjp1,mjp2,mjp3,mjp4"); while($row = mysql_fetch_array($result)) {

AW: [PHP] export mysql to csv prob

2005-02-10 Thread Mirco Blitz
: Freitag, 11. Februar 2005 00:02 An: php-general@lists.php.net Betreff: [PHP] export mysql to csv prob hi i have a script that exports the result of a mysql query to a csv file suitable for downloading the code looks like $result = mysql_query("select * from user,mjp1,mjp2,mjp3,mjp4");

[PHP] export mysql to csv prob

2005-02-10 Thread Redmond Militante
hi i have a script that exports the result of a mysql query to a csv file suitable for downloading the code looks like $result = mysql_query("select * from user,mjp1,mjp2,mjp3,mjp4"); while($row = mysql_fetch_array($result)) { $csv_output .= "$row[userid] $row[firstname] $row[lastname]\n"

Re: [PHP] export mysql to excel

2004-05-14 Thread Marek Kilimajer
CurlyBraces Technologies ( Pvt ) Ltd wrote: hi , i want to export data in mysql to excel . but problem is mysql runs in the linux machine , How can i get that data from mysql-Linux machine to windows-Excel machine , plz help asap thanx in advance curlys There are few classes that can create na

Re: [PHP] export mysql to excel

2004-05-13 Thread Richard Harb
You could get yourself the mySQL ODBC driver and 'Get External Data' in Excel ... Richard -Original Message- From: CurlyBraces Technologies ( Pvt ) Ltd Sent: Friday, May 14, 2004, 7:18:17 AM > hi , > i want to export data in mysql to excel . but problem is mysql runs in the linux > mac

[PHP] export mysql to excel

2004-05-13 Thread CurlyBraces Technologies \( Pvt \) Ltd
hi ,   i want to export data in mysql to excel .. but problem is mysql runs in the linux machine , How can i get that data from mysql-Linux machine  to windows-Excel machine , plz help asap   thanx in advance curlys -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: htt

Re: [PHP] Export MySQL

2003-12-31 Thread Brad Pauly
On Wed, 2003-12-31 at 11:34, Sheawh wrote: > it may be a bit out of topic, > but can anyone teach me how to export a MySQL database? If you mean in general, it is a bit OT, but check out mysqldump. http://www.mysql.com/doc/en/mysqldump.html If you mean with PHP, you could use the exec() command

RE: [PHP] Export MySQL

2003-12-31 Thread Jay Blanchard
[snip] it may be a bit out of topic, but can anyone teach me how to export a MySQL database? [/snip] Google? A search on the MySQL web site? http://www.mysql.net/mysqldump -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Export MySQL

2003-12-31 Thread Sheawh
it may be a bit out of topic, but can anyone teach me how to export a MySQL database? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php