Only allow GET and POST HTTP request and die otherwise.
[Project_webapp.git] / includes / header.php
1 <?php
2 include('header.html');
3 /**
4 * Let's use an array as the list of tunables.
5 * Put in a variable the inclusion of this file:
6 * $config_var = include('config.php');
7 */
8 $configs = include('config.php');
9 ?>
10 <div id="header">
11 <!-- Put headers stuff here -->
12 <a href="<?php echo $configs['root_url'] ?>/index.php?page=home">Bienvenue sur Air Polytech !</a>
13 </div>
14 <?php
15
16 function display_menu() {
17 switch ($page) {
18 case "home":
19 break;
20 case "register":
21 break;
22 }
23
24 }
25 ?>