You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
660 B
26 lines
660 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Coffee Index Page</h1>
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
<a href="new">Add a Coffee</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<section>
|
|
<ul>
|
|
<?php while($row = $drinks->fetch_object()): ?>
|
|
<li>
|
|
Pour a <?php echo $row->drink ?> for <?php echo $row->guest?>
|
|
</li>
|
|
<?php endwhile; ?>
|
|
</ul>
|
|
</section>
|
|
</body>
|
|
</html>
|