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"