source: branches/1.3/index.php @ 27569

Last change on this file since 27569 was 350, checked in by z0rglub, 20 years ago

append central HTML to $output, do not echo $code anymore

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1<?php
2/***************************************************************************
3 *                                  index.php                              *
4 *                            -------------------                          *
5 *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
6 *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
7 *                                                                         *
8 *   $Id: index.php 350 2004-02-05 23:18:05Z z0rglub $
9 *                                                                         *
10 ***************************************************************************
11
12/***************************************************************************
13 *                                                                         *
14 *   This program is free software; you can redistribute it and/or modify  *
15 *   it under the terms of the GNU General Public License as published by  *
16 *   the Free Software Foundation;                                         *
17 *                                                                         *
18 ***************************************************************************/
19
20define( 'PREFIX_INCLUDE', '' );
21include_once( './include/functions.inc.php' );
22database_connection();
23// retrieving configuration informations
24$query = 'SELECT access';
25$query.= ' FROM '.PREFIX_TABLE.'config;';
26$row = mysql_fetch_array( mysql_query( $query ) );
27if ( $row['access'] == 'restricted' )
28{
29  if ( isset( $_COOKIE['id'] ) ) $url = 'category';
30  else                           $url = 'identification';
31}
32else                             $url = 'category';
33// redirection
34$url.= '.php';
35header( 'Request-URI: '.$url ); 
36header( 'Content-Location: '.$url ); 
37header( 'Location: '.$url );
38exit();
39?>
Note: See TracBrowser for help on using the repository browser.