Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これが私のコードです。どこに問題があるのか わかりませんでした!
<?php include("dbc.php"); $result = mysqli_query($dbc,"SELECT * FROM employee"); while($row = mysqli_fetch_array($result)) { echo $row['name'] . " " . $row['age']." ".$row['id']; echo "<br>"; } ?>