i want to echo out everything from a particular query. If echo $res I only get one of the strings. If I change the 2nd mysql_result argument I can get the 2nd, 2rd etc but
$sql = "SELECT * FROM MY_TABLE";
$result = mysqli_query($conn, $sql); // First parameter is just return of "mysqli_connect()" function
echo "
";
echo "";
while ($row = mysqli_fetch_assoc($result)) { // Important line !!! Check summary get row on array ..
echo "";
foreach ($row as $field => $value) { // I you want you can right this line like this: foreach($row as $value) {
echo "" . $value . " "; // I just did not use "htmlspecialchars()" function.
}
echo " ";
}
echo "
";