码迷,mamicode.com
首页 > 数据库 > 详细

织梦、phpcms引用数据库连接

时间:2015-04-23 12:43:59      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

织梦引用数据库连接

<?$db_config = require("data/common.inc.php");

$con = @mysql_connect($cfg_dbhost,$cfg_dbuser,$cfg_dbpwd) or die(‘数据库连接失败:‘.mysql_error());

mysql_query("set names ‘gb2312‘",$con);

mysql_select_db($cfg_dbname,$con) or die(‘选择数据库失败:‘.mysql_error());

if (!$con)

{

  die(‘Could not connect: ‘. mysql_error());

?>

phpcms引用数据库连接

<?

$db_config = require("caches/configs/database.php");

$con = @mysql_connect($db_config["default"]["hostname"],$db_config["default"]["username"],$db_config["default"]["password"]) or die(‘数据库连接失败:‘.mysql_error());

mysql_query("set names ‘gb2312‘",$con);

mysql_select_db($db_config["default"]["database"],$con) or die(‘选择数据库失败:‘.mysql_error());

if (!$con)

{

  die(‘Could not connect: ‘ . mysql_error());

}

?>

织梦、phpcms引用数据库连接

标签:

原文地址:http://www.cnblogs.com/mrt-yyy/p/4450003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!