Yet another PHP based Funko Pop collection tracker, about as bare bones as you can get, but it's functional.
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.
|
- <?php
- $pagetitle = "Funko Pop Collection Database";
- include_once ('header.php');
- if (isset($_SESSION['userid'])){
- echo 'Enter new Funko Pop <A HREF="newfunko.php" CLASS="navlink">here</A><BR /><BR />';
- echo 'Search for existing Funko Pop <A HREF="search.php" CLASS="navlink">here</A><BR /><BR />';
- echo 'List ALL Funko Pops <A HREF="list.php" CLASS="navlink">here</A><BR /><BR />';
- echo 'Add a new Funko Pop group <A HREF="collection.php" CLASS="navlink">here</A><BR />';
- }
- include_once ('footer.php');
- ?>
|