SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
46
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- <?php
- require_once 'route.php';
- require_once 'functions.php';
- $route = new Route();
- $route->add('/', function(){
- $site_url = site_url();
- require_once 'pages/home.php';
- });
- $route->add('/product', function(){
- require_once 'pages/product.php';
- });
- $route->add('/contact', function(){
- require_once 'pages/contact.php';
- });
- $route->add('/admin', function(){
- $site_url = site_url();
- require_once 'pages/admin.php';
- });
- $route->add('/login', function(){
- require_once 'pages/test.php';
- });
- $route->submit();
RAW Paste Data

