Просмотр файла SimpleMember1.0/main.php

Размер файла: 1.48Kb
<?
#########################################################
# Simple Member 1.0                                     #
#########################################################
#                                                       #
# Created by: Doni Ronquillo                            #
#                                                       #
# This script and all included functions, images,       #
# and documentation are copyright 2003                  #
# free-php.net (http://free-php.net) unless             #
# otherwise stated in the module.                       #
#                                                       #
# Any copying, distribution, modification with          #
# intent to distribute as new code will result          #
# in immediate loss of your rights to use this          #
# program as well as possible legal action.             #
#                                                       #
#########################################################

	define("BASEHREF",	"http://www.free-php.net/scripts/SimpleMember1.0");
	define("DOMAIN",	"free-php.net");
	define("FROMEMAIL",	"[email protected]");
	define("SITENAME",	"Free-Php.net");
	define("INC_DIR",	"/full/path/to/SimpleMember1.0/inc/");
	define("PAG_DIR",	INC_DIR."pages/");

	define("INC_DB",	INC_DIR."db.php");

	define("MYSQLUSER",	""); // mysql username
	define("MYSQLPASS",	""); // mysql password
	define("MYSQLDB",	"");    // mysql database name

	require(INC_DB);

?>