Concatenate Strings

hi..:slight_smile:
this is my sample part of my program..

    $csv_output .= $row['name'].",".
                                   $row['region'].",".
                                   $row['city'].",".
                                   $row['Area'].",".
                                   $row['Street'].",".
                                   $row['Building'].",".
                                   $row['totalorders'].",".
                                   $row['totalgross'].","."\n";

and the output of this is..

name, region,city,area,street,building,totalorders,totalgross

now the output that I need is like this..

"name","region","city","area","street","building","totalorders","totalgross"

is there anybody can help me how can I make this output..?
thanks in advanced.
have a great day ahead. :slight_smile:

which db you are using ? and is it perl program ?

I am using phpMyAdmin as my database. It is not a perl program.