I have the code below and was hoping someone could clarify what the highlighted/commented/obvious lines was doing please
$result = mysqli_query($db, "SELECT * FROM `tblName` WHERE `id`='" . mysqli_real_escape_string($db, $_GET['id']) . "' LIMIT 0, 1");
$row = mysqli_fetch_assoc($result);
foreach($row as $name => $value) { // THIS ONE I NEED HELP WITH
...
}
Does it basically say "for each column..." - this is where I get stuck