PHP Classes

File: menu.php

Recommend this page to a friend!
  Classes of Martin Latter   Noter   menu.php   Download  
File: menu.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Noter
Create and manage notes shared between users
Author: By
Last change: Update of menu.php
Date: 1 year ago
Size: 377 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

#########################################
require('classes/helpers.class.php');
#########################################

Helpers::validateUser();

require(
'includes/head.php');

?>

        <a href="add.php">add</a><br>
        <a href="update.php">update</a><br>
        <a href="delete.php">delete</a>

<?php

require('includes/foot.php');