You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
477 B
PHP
36 lines
477 B
PHP
<?php
|
|
require_once("model/db.php");
|
|
require_once("controller/listLatest.php");
|
|
?>
|
|
|
|
<aside>
|
|
|
|
<?php
|
|
|
|
$title = "Beers";
|
|
$where = "5";
|
|
$what = "beer";
|
|
$array = listBeersNAN($pdo);
|
|
|
|
require("sidebar/sidebarLister.php")
|
|
|
|
?>
|
|
|
|
<?php
|
|
|
|
$title = "Breweries";
|
|
$where = "5";
|
|
$what = "brewery";
|
|
|
|
<<<<<<< HEAD
|
|
$array = listBreweriesNAN($pdo);
|
|
=======
|
|
$array = listBeersByBreweryNAN($pdo);
|
|
>>>>>>> 93e36a779e5f963953576602543f9564d860498b
|
|
|
|
require("sidebar/sidebarLister.php");
|
|
|
|
?>
|
|
|
|
</aside>
|