[phpMP-CVS] CVS: phpMP index.php,1.29,1.30
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-02-07 23:29:22
|
Update of /cvsroot/phpmp/phpMP In directory sc8-pr-cvs1:/tmp/cvs-serv29029 Modified Files: index.php Log Message: Various updates and code consolidation. Index: index.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/index.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -r1.29 -r1.30 *** index.php 4 Feb 2003 21:43:03 -0000 1.29 --- index.php 7 Feb 2003 23:28:48 -0000 1.30 *************** *** 1 **** ! <html> <body> <?php define("C_PHPMP_ROOT", "./"); include_once( C_PHPMP_ROOT . 'includes/core.php' ); $Core = new Core(); $Core->init(); // For testing purposes, we will now print all of the constants we have declared. print "phpMP Version: " . C_VERSION . '<br>'; print "<br>"; print "Site Name: " . C_SITE_NAME . '<br>'; print "Site Address: " . C_SITE_ADDR . '<br>'; print "Relative Path: " . C_REL_PATH . '<br>'; print "Default Template: " . C_DEFAULT_TPL . '<br>'; print "Default Language: " . C_DEFAULT_LANG . '<br>'; print "The Current Date and Time: " . C_DATE_NOW . '<br>'; print "Current Logged User: " . U_USERNAME . '<br>'; print "<br>"; print "DB Type: " . DB_TYPE . '<br>'; print "DB Host: " . DB_HOST . '<br>'; print "DB Name: " . DB_NAME . '<br>'; print "DB User: " . DB_USER . '<br>'; print "DB Host: " . DB_TABLE_PREFIX . '<br>'; print "<br>"; print "Config Table: " . C_CONFIG_TABLE . '<br>'; print "Users Table: " . C_USERS_TABLE . '<br>'; print "Block Table: " . C_BLOCK_TABLE . '<br>'; print "Modules Table: " . C_MODULES_TABLE . '<br>'; print "Session Table: " . C_SESSIONS_TABLE . '<br>'; ?> </body> </html> \ No newline at end of file --- 1 ---- ! <html> <body> <?php define("C_PHPMP_ROOT", "./"); include_once( C_PHPMP_ROOT . 'includes/core.php' ); $Core = new Core(); $Core->init(); // For testing purposes, we will now print all of the constants we have declared. print "phpMP Version: " . C_VERSION . '<br>'; print "<br>"; print "Site Name: " . C_SITE_NAME . '<br>'; print "Site Address: " . C_SITE_ADDR . '<br>'; print "Relative Path: " . C_REL_PATH . '<br>'; print "Default Template: " . C_DEFAULT_TPL . '<br>'; print "Default Language: " . C_DEFAULT_LANG . '<br>'; print "The Current Date and Time: " . C_DATE_NOW . '<br>'; print "Current Logged User: " . U_USERNAME . '<br>'; print "<br>"; print "DB Type: " . DB_TYPE . '<br>'; print "DB Host: " . DB_HOST . '<br>'; print "DB Name: " . DB_NAME . '<br>'; print "DB User: " . DB_USER . '<br>'; print "DB Host: " . DB_TABLE_PREFIX . '<br>'; print "<br>"; print "Config Table: " . DB_CONFIG_TABLE . '<br>'; print "Users Table: " . DB_USERS_TABLE . '<br>'; print "Block Table: " . DB_BLOCK_TABLE . '<br>'; print "Modules Table: " . DB_MODULES_TABLE . '<br>'; print "Sessions Table: " . DB_SESSIONS_TABLE . '<br>'; ?> </body> </html> \ No newline at end of file |