the commas have to be in quotes or PHP will think it's supposed to do something with them. Also, if you need to use $something['something'] notation within a string, put it in {}. Try the following, and you won't even need the concatenation operator:
$output_csv = ""; //Blank out the string, just for good measure
$output_csv .= "{$result_array['outlet_name']},{$result_array['outlet_address']},{$result_array['outlet_city']},{$result_array['outlet_state']},{$result_array['outlet_zip']},{$result_array['taxpayer_name']}\n";
(Note: the messageboard messed up the formatting, put that all on one line)
-Jim Keller
http://ww.centerfuse.net