Files
cs2440/catalog/components/nav.php
T
jashton 3f844e4e06
Deploy CSIS 2440 / deploy (push) Canceled after 0s
finished final project
2025-05-05 21:53:39 -06:00

38 lines
918 B
PHP
Executable File

<?php
$nav = '
<nav class="glass">
<ul>
<div class="row space_between">
<div>
<li><a href="catalog.php">Products</a></li>
</div>
<div class="absolute_h_center">
<a href="index.php"><h4>ACME Store</h4></a>
</div>
<div>
';
if (isset($_SESSION['id'])) {
$nav .= '
<li>
<a href="cart.php" id="cart">
<i class="nf nf-md-cart"></i>
' . (!empty($_SESSION['cart']) ? '<div id="dotton"><small>' . count($_SESSION['cart']) . '</small></div>' : '') . '
</a>
</li>';
}
$nav .= '
' . (isset($_SESSION['id']) ? '<li><a href="logout.php">Logout</a></li>' : '') . '
' . (!isset($_SESSION['id']) ? '<li><a href="index.php">Login</a></li>' : '') . '
' . (!isset($_SESSION['id']) ? '<li><a href="create-account.php">Signup</a></li>' : '') . '
</div>
</div>
</ul>
</nav>
';
echo $nav;