## KROK 3 - Potwierdzać the zawartość 3 rząd
$sql = "WYBIÓRKA * OD ihcsecure.csv_import";
$result = mysql_query ($sql, $link1) lub kostka do gry (mysql_error ());
$rcount = mysql_num_rows ($result);
echo "
There być teraz". $rcount. "rząd dane w the csv_import table. ";
$i = (0);
podczas gdy ($records = mysql_fetch_array ($result)) {
$i = $i+1;
$dmpo_id = $records ["group_id"];
$type = $records ["typ"];
odbijać się echem " The DMPO ID dla rząd". $i. "być". $dmpo_id;
jeżeli (isValid ($type) > (0)) {
odbijać się echem "The typ kod być ważny";
} inny {
odbijać się echem "The typ kod być nieważny";
}
}
funkcja isValid ($cType) {
$sqlx = "WYBIÓRKA * OD carecards.nbi_types dokąd typ = "$cType"";
$types = mysql_query ($sqlx, $link2) lub kostka do gry (mysql_error ());
$vType = mysql_num_rows ($types);
powrotny $vtype;
}
|