1
0

first alpha

This commit is contained in:
Daniel Tartavel
2021-03-23 20:26:52 +01:00
parent 944e742590
commit fc0c6bdf3f
11 changed files with 145 additions and 61 deletions

14
getAnthology.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
require_once 'session_init.php';
require_once 'config.inc.php';
require_once 'db.class.php';
require_once 'log.php';
require_once 'fonctions.inc.php';
$db = new db();
$db->open();
$page = getpost("page",0);
$db->getAnthology($page);
?>