Hi There,
Is it Possible to insert on DB my 2 foreach at the same time ? if not help me Please?
e.g of my Codes
foreach($br_id as $br) {
echo $br;
echo "<br>";
}
foreach($mf_location as $mf) {
echo $mf;
echo "<br>";
}
$insert = $DB->query("Insert into movies(br,mf)
values('$br,'$mf')");
Thanks
Mcp