Hi,
I have a form using a multiplier which collects several rows of data into an array:
I want to write a record for each element in the array so that class[0], compid[0], and starttime[0] are in one record and class[1], compid[1], and starttime[1]. I can't do this with a standard DBSave so what is the correct solution?
Cheers
Tim
I have a form using a multiplier which collects several rows of data into an array:
data => Array (
[class] => Array
(
[0] => Open
[1] => Open
)
[compid] => Array
(
[0] => XC
[1] => SS
)
[starttime] => Array
(
[0] => 1435
[1] => 1432
)
)
I want to write a record for each element in the array so that class[0], compid[0], and starttime[0] are in one record and class[1], compid[1], and starttime[1]. I can't do this with a standard DBSave so what is the correct solution?
Cheers
Tim