Although unconventional, I would use JSON - somehting like this...
// select your data
$result = mysql_query("SELECT * FROM some_table;");
// build an associative array for each row, and add to total data
while($row = mysql_fetch_assoc($result)){
$rows[] = $row;
}
// encode it all as JSON
$data = json_encode( $rows );
Which has the advantage that the data is stored as a very easily manipulated object ($rows in my example) in php before it is encoded, and can be passed to almost any language for further processing.
If you are worried about the size of the data, then you can comprress it, as it is repetative, it compresses very well.
This method handles all escaping, and provides a way to encode/decode data without building custom functions for re-attaching column headers etc...
It is not the most efficient method, and does not produce the most condensed format, but it is highly portable, and allows for very easy processing... like this:
// convert JSON string into php object
// then loop over it to operate on each row
foreach(json_decode($data) as $row){
// create empty array for keys and vals
$vals = $keys = array();
// create array of keys and vals in the data row
foreach($row as $k => $v){
$keys[] = $k; $vals[] = $v;
}
// build an insert statement using the keys and values from each row
echo "INSERT INTO some_table (".implode(',',$keys).") VALUES (".implode(',',$vals).");\n";
}
Although it is not the most efficient, I like this way of working with data, and I feel it is less error prone as the structure of the data and the data are never seperated.
I doubt many people will agree with this as the overhead of encoding and decoding JSON means it will perform poorly compared with CSV for example, although probably better than the beast that is XML.