24 lines
737 B
PHP
Executable File
24 lines
737 B
PHP
Executable File
<?php
|
|
#########################################################
|
|
# #
|
|
# Useful constants #
|
|
# written by benjamin ramey #
|
|
# bsr@rameydesign.net #
|
|
# #
|
|
# best viewed with: #
|
|
# resolution = 1280x960 #
|
|
# tab = 4 spaces #
|
|
# indent = 8 spaces #
|
|
# #
|
|
# #
|
|
# DEPENDENCIES #
|
|
# none #
|
|
# #
|
|
########################################################## CONSTANTS
|
|
# prefix => k, style => all caps
|
|
|
|
define('kDEBUG',false); // whether debugging should be turned on or not
|
|
define('kDEVSERVER',false); // whether i'm working on the dev server or not
|
|
define('kERROR_LEVEL','ALL');
|
|
|
|
?>
|