织梦、phpcms引用数据库连接

织梦引用数据库连接

织梦引用数据库连接

<?$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后台框架如何实现思路

phpcms模板

国内外主要的PHP开源CMS系统分析

phpcms数据库操作

phpcms模块开发简易好代码教程