13 lines
196 B
PHP
13 lines
196 B
PHP
|
|
<?
|
||
|
|
|
||
|
|
function table_show( $sitepart_id ) {
|
||
|
|
require("show_table.inc.php");
|
||
|
|
}
|
||
|
|
|
||
|
|
function table_edit() {
|
||
|
|
|
||
|
|
require __DIR__ . DIRECTORY_SEPARATOR . 'edit_table.inc.php';
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
?>
|