CSV
7/28
Tab Separated Fields
XML formats
CSV is the most flexible format of these and most common these days:
•
it uses a delimiter character, usually
,
or
;
•
it encapsulates strings in
'...'
•
so text can contain the field delimiter character
•
no real (formal) specifications
•
not all implementations support line breaks in data
PHP supports CSV with its fgetcsv() function.