13 lines
285 B
Plaintext
13 lines
285 B
Plaintext
<?php
|
|
# These are just common variables used throughout the site
|
|
|
|
$MY_SERVER = 'http://server/tipman';
|
|
|
|
$APP_TITLE = 'Josh\'s Tip Manager';
|
|
|
|
$MYSQL_SERVER = 'localhost';
|
|
$MYSQL_USER = 'tipman';
|
|
$MYSQL_PASSWORD = 'secretpass';
|
|
$MYSQL_DB = 'tipman';
|
|
?>
|