aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
blob: 35f616f821e412f22ef3f603abea851bd2585e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
define( PREFIX_INCLUDE, '' );
include_once( './include/functions.inc.php' );
database_connection();
// retrieving configuration informations
$query = 'SELECT access';
$query.= ' FROM '.PREFIX_TABLE.'config;';
$row = mysql_fetch_array( mysql_query( $query ) );
if ( $row['access'] == 'restricted' ) $url = 'identification';
else                                  $url = 'category';
// redirection
$url.= '.php';
header( 'Request-URI: '.$url );  
header( 'Content-Location: '.$url );  
header( 'Location: '.$url );
exit();
?>