I've included this PHP
file in my index.php
, but I only get the first item from the database. How can I get all items from my database?
<?php
$sql = "SELECT name,price FROM items ORDER BY `id`";
$res = mysqli_query($conn, $sql);
$page = mysqli_fetch_assoc($res);
mysqli_close($conn);
?>
<h2><?=$page["name"]?></h2>
<?=$page["price"]?>