Changeset 44 for trunk/index.php
- Timestamp:
- Nov 24, 2009, 5:19:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r42 r44 4 4 $BaseDir = substr($_SERVER['SCRIPT_FILENAME'], 0, strrpos($_SERVER['SCRIPT_FILENAME'], '/')); 5 5 if($BaseDir != '') chdir($BaseDir); 6 7 include_once(dirname(__FILE__).'/Base/HTTP.php'); 8 9 // Is executed from command line? 10 if(!isset($_SERVER['REMOTE_ADDR'])) 11 { 12 $HTTP = new HTTP(); 13 $_GET = $HTTP->GetQueryStringArray($_SERVER['argv'][1]); 14 } 15 print_r($_SERVER); 16 print_r($_GET); 6 17 7 18 include_once(dirname(__FILE__).'/Application/Application.php');
Note:
See TracChangeset
for help on using the changeset viewer.