Files
phpmyadmin/chk_rel.php
2010-07-29 19:17:25 +05:30

26 lines
363 B
PHP
Executable File

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
*
* @package phpMyAdmin
*/
/**
* Gets some core libraries
*/
require_once './libraries/common.inc.php';
require_once './libraries/header.inc.php';
/**
* Gets the relation settings
*/
$cfgRelation = PMA_getRelationsParam(TRUE);
/**
* Displays the footer
*/
require './libraries/footer.inc.php';
?>