in a special Advancedform_XH-form, only one set of data should be stored in a file for displaying it later.
I thought it's easy to avoid reading of the data in the stored file by changing the advfrm.php.
Simply commenting at the end of function advfrm_read_csv($id):
- Code: Select all
$data = array();
/*
foreach ($lines as $line) {
$line = array_map('trim', explode("\t", $line));
$rec = array_combine($fields, $line);
$data[] = $rec;
}
*/
// ### special : only one set!
return $data;
But this didn't work
Any hint welcome and
Thanks in advance
Jochen

