You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxml/www/phplib/globals.php

36 lines
707 B

21 years ago
<?php
//
// "$Id: globals.php,v 1.3 2004/05/19 14:02:38 mike Exp $"
21 years ago
//
// Global PHP constants and variables...
21 years ago
//
// 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...
//
21 years ago
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"];
21 years ago
//
// End of "$Id: globals.php,v 1.3 2004/05/19 14:02:38 mike Exp $".
21 years ago
//
?>