How to echo out table rows from the db (php)

前端 未结 5 1194
故里飘歌
故里飘歌 2020-11-28 11:35

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

5条回答
  •  情歌与酒
    2020-11-28 12:13

    $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 ""; // I just did not use "htmlspecialchars()" function. } echo ""; } echo "
    " . $value . "
    ";

提交回复
热议问题