1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25:
## STEP 3 - bevestig de inhoud van elke rij $sql = „SELECTEER * UIT ihcsecure.csv_import“; $result = mysql_query ($sql, $link1) of matrijs (mysql_error ()); $rcount = mysql_num_rows ($result); de echo „There is nu“. $rcount. „rijen van gegevens in csv_import table.“; $i = 0; terwijl ($records = mysql_fetch_array ($result)) { $i = $i+1; $dmpo_id = $records [„group_id“]; $type = $records [„type“]; echo „The identiteitskaart DMPO voor rij“. $i. „is“. $dmpo_id; als (isValid ($type) > 0) { weergalm de „Typecode is geldig“; } anders { weergalm de „Typecode is ongeldig“; } } functie isValid ($cType) { $sqlx = „SELECTEER * UIT carecards.nbi_types waar type = „$cType““; $types = mysql_query ($sqlx, $link2) of matrijs (mysql_error ()); $vType = mysql_num_rows ($types); terugkeer $vtype; }