## SCHRITT 3 - den Inhalt jeder Reihe validieren
$sql = „WÄHLEN * VON ihcsecure.csv_import“ vor;
$result = mysql_query ($sql, $link1) oder sterben (mysql_error ());
$rcount = mysql_num_rows ($result);
Echo „
There sind jetzt“. $rcount. „Reihen von Daten im csv_import table. “;
$i = 0;
während ($records = mysql_fetch_array ($result)) {
$i = $i+1;
$dmpo_id = $records [„group_id“];
$type = $records [„Art“];
„ The DMPO Identifikation für Reihe“ widerhallen. $i. „ist“. $dmpo_id;
wenn (isValid ($type) > 0) {
„das Typencode widerhallen ist gültig“;
} sonst {
„das Typencode widerhallen ist unzulässig“;
}
}
Funktion isValid ($cType) {
$sqlx = „* VON carecards.nbi_types in dem Art = „$cType““ VORWÄHLEN;
$types = mysql_query ($sqlx, $link2) oder sterben (mysql_error ());
$vType = mysql_num_rows ($types);
Rückhol$vtype;
}
|