does anybody have a script for inserting data from a mysql database table into a csv file?
If a CSV is just a comma separated text file, then: <? $fd=fopen("NAME_OF_CSV", "a+"); //a+ is Open for Appending
fwrite($fd,"$VARIABLE1, $VARIABLE2, ETC\n"); ?>