mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-18 00:45:31 +00:00
36 lines
707 B
PHP
36 lines
707 B
PHP
<?php
|
|
//
|
|
// "$Id: globals.php,v 1.3 2004/05/19 14:02:38 mike Exp $"
|
|
//
|
|
// Global PHP constants and variables...
|
|
//
|
|
// This file should be included using "include_once"...
|
|
//
|
|
|
|
//
|
|
// Global vars...
|
|
//
|
|
|
|
$PROJECT = "Mini-XML"; // Title of project
|
|
$EMAIL = "mxml@easysw.com"; // Default notification address
|
|
$PAGE_MAX = 10; // Max items per page
|
|
|
|
|
|
//
|
|
// PHP transition stuff...
|
|
//
|
|
|
|
global $_COOKIE, $_FILES, $_POST, $_SERVER;
|
|
|
|
$argc = $_SERVER["argc"];
|
|
$argv = $_SERVER["argv"];
|
|
$PHP_SELF = $_SERVER["PHP_SELF"];
|
|
$REQUEST_METHOD = $_SERVER["REQUEST_METHOD"];
|
|
$SERVER_NAME = $_SERVER["SERVER_NAME"];
|
|
|
|
|
|
//
|
|
// End of "$Id: globals.php,v 1.3 2004/05/19 14:02:38 mike Exp $".
|
|
//
|
|
?>
|