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.
32 lines
399 B
PHP
32 lines
399 B
PHP
<?php
|
|
require_once("model/db.php");
|
|
require_once("controller/listLatest.php");
|
|
?>
|
|
|
|
<aside>
|
|
|
|
<?php
|
|
|
|
$title = "LATEST Beers";
|
|
$where = "5";
|
|
$what = "beer";
|
|
$array = listLatestBeers($pdo, $where);
|
|
|
|
require("sidebar/sidebarLister.php")
|
|
|
|
?>
|
|
|
|
<?php
|
|
|
|
$title = "LATEST Breweries";
|
|
$where = "5";
|
|
$what = "brewery";
|
|
|
|
$array = listBeersByBreweryNAN($pdo);
|
|
|
|
require("sidebar/sidebarLister.php");
|
|
|
|
?>
|
|
|
|
</aside>
|