<? // ******************************************************************* // include/config.php // ******************************************************************* // ******************************************************************* // MySQL Connection Information // leave $dbhost as is. localhost will work on most virtual servers // change dbuser to your usr login // change dbpasswd to your login password // change dbname to your database name // All the above settings must be completed before installing PHPLinks // ******************************************************************* // MySQL server hostname $dbhost = "localhost"; // MySQL server username $dbuser = "root"; // MySQL server password $dbpasswd = "sam7"; // MySQL database name $dbname = "rahoo"; // ******************************************************************* // phpLinks Language // choose your language here. // // ******************************************************************* $language = "english"; // ******************************************************************* // MySQL Table Names // ******************************************************************* $tb_categories = "categories"; $tb_links = "links"; $tb_settings = "settings"; $tb_temp = "temp"; $tb_related = "related"; $tb_terms = "terms"; $tb_reviews = "reviews"; $tb_specs = "specs"; $tb_sessions = "sessions"; // ******************************************************************* // Other Settings // // ******************************************************************* // These are default values you can set to prefill the blanks // when you manually add a site from admin. Can be blank as well. $prefill_email = "hide@address.com"; $prefill_username = "username"; $prefill_password = "password"; $prefill_hint = "hint"; ?>