Andreas Mueller - 2011-03-21 08:02:55 -
In reply to message 1 from Gheorghe Sarbu
Hi Ion!
the update function does this:
Update($key,$data) { //Updating Item "key" with "data" named array
will change contnent of any field you specify.
With your sample data:
record; english; danish
1; luggage;
2; lobby;
3; stationery;
to put 'Bøjning' into danish Number 2 you that would be something like:
$data = new CSVHandler("wordfile.csv",";","record");
$newData=array('danish' => 'Bøjningo');
$data->update(2,$newData);
Hope this helps.