display records in table

前端 未结 3 842
感情败类
感情败类 2021-01-26 12:52

I am having some trouble with my first PHP project, I am trying to get the data from MySQL database (Has 3 records) and display it in tables. Problem is it only seem to display

3条回答
  •  旧时难觅i
    2021-01-26 13:40

    if (mysqli_connect_errno())
      {
      echo "Failed to connect to MySQL: " . mysqli_connect_error();
      }
    
    echo "";
    
    $result = mysqli_query($con,"SELECT * FROM unitstats");
    
    while($row = mysqli_fetch_array($result))
    {
      echo "";
      echo "";
      echo "";
      echo "";
    }
      echo "
    ID Name
    " . $row['id'] . "" . $row['name'] . "
    ";

    Basically you didn't need the initial loop, this would have mainly caused an issue because you would have been redeclaring $row with the second loop.

提交回复
热议问题