me
/
DB-Xplorer
Archived
1
0
Fork 0
This repository has been archived on 2019-05-31. You can view files and clone it, but cannot push or open issues/pull-requests.
DB-Xplorer/index.php

12 lines
425 B
PHP

<?php
session_start();
$_page = isset($_GET['page']) ? htmlspecialchars($_GET['page']) : 'index';
$_schema = isset($_GET['schema']) ? htmlspecialchars($_GET['schema']) : null;
$_table = isset($_GET['table']) ? htmlspecialchars($_GET['table']) : null;
$_offset = isset($_GET['offset']) ? intval(htmlspecialchars($_GET['offset'])) : 0;
$config=include('config.php');
include('model.php');
include('router.php');
?>