/dd/ -> 0_0028_inc.php
1 <?php
2
3 // 0_0027_inc.php - Adds 'user-defined' table 'files'
4 // 0_0027_inc.php - author: Nico Stuurman
5
6 /***************************************************************************
7 * Copyright (c) 2001 by Nico Stuurman *
8 * ------------------------------------------------------------------------ *
9 * This code is part of phplabware (http://phplabware.sf.net) *
10 * *
11 * *
12 * This program is free software; you can redistribute it and/or modify it *
13 * under the terms of the GNU General Public License as published by the *
14 * Free Software Foundation; either version 2 of the License, or (at your *
15 * option) any later version. *
16 \**************************************************************************/
17
18
19 $id=$db->GenID("tableoftables_id_seq");
20 $db->Execute("INSERT INTO tableoftables (id,sortkey,tablename,shortname,display,permission,custom) VALUES($id,'1000','settings','se','Y','Users','users.php?type=me&dummy=true')");
21
22 ?>