/[cvs]/nfo/site/htdocs/index.php
ViewVC logotype

Diff of /nfo/site/htdocs/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by rabit, Tue Aug 24 03:29:30 2004 UTC revision 1.4 by rabit, Mon Aug 30 04:21:55 2004 UTC
# Line 1  Line 1 
1  <?php  <?php
2  /*------------------------------------------------------------------------------  /*------------------------------------------------------------------------------
3  --- www.netfrag.org  --- www.netfrag.org
4  --- Main index page.  --- Main index and content access page.
5  --------------------------------------------------------------------------------  --------------------------------------------------------------------------------
6  --- rabit, 01:28 24.08.2004  --- rabit, 01:28 24.08.2004
7  --- $Id$  --- $Id$
# Line 10  Line 10 
10  include('inc/common/common.php.inc');  include('inc/common/common.php.inc');
11    
12  //------------------------------------------------------------------------------  //------------------------------------------------------------------------------
13    //- GET/POST variable encapsulation:
14    
15  common_pageheader();  $contentkeyname = (isset($_GET['ck']) ? $_GET['ck'] : '');
16    
17  common_headline('CFG Variables:');  $language_id = (isset($_GET['li']) ? $_GET['li'] : '');
18    
19  common_paragraph('$documentroot = "' . $documentroot . '"');  $outputtype = (isset($_GET['ot']) ? $_GET['ot'] : '');
20    
21  common_headline('$_SERVER array, readable:');  //------------------------------------------------------------------------------
22    
23    if(!$contentkeyname) $contentkeyname = 'Home';
24    
25    if(!$language_id) $language_id = 1;
26    
27    if(!$outputtype) $outputtype = 'html';
28    
29    //------------------------------------------------------------------------------
30    
31    // Dispatching the output content type:
32    
33    switch($outputtype) {
34    
35      case 'xml': // XML output
36    
37        break;
38    
39      // HTML output:
40    
41      case 'html':
42    
43      default:
44    
45  common_paragraph(nl2br(htmlentities(print_r($_SERVER, true))), 'hl');      // Generate a HTML page:
46        common_page($contentkeyname, $language_id);
47    
48  common_pagefooter();  }
49    
50  //------------------------------------------------------------------------------  //------------------------------------------------------------------------------
51    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.4

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed