hi there:
i am getting this error :
DB Error: ERROR: syntax error at or near "Array" On query: INSERT INTO am_ups_xml ( Array ) VALUES ( );
I am trying to insert the array values Key=>value kind of array ...this is the snippet of the code of insert:
$insert_fields[] = $fields;
$insert_values[] = $value;
}
$query ="INSERT INTO am_ups_xml ( ".join(",", $insert_fields)." ) VALUES ( ".join(",",$insert_values). " );";
$r = $db->Query($query);
Please help!