怎么将php与数据库连接php链接mysql必备条件:
已安装mysql数据库;
检查php环境是否已开启mysql扩展(一般情况下是开启的);
检查方法:a.使用phpinfo();函数,看有没有mysql项;b.打开php.ini文件,检查php_mysql.dll前分号是否已取掉 。
php链接代码如下:
?php
//设置编码格式
header("Content-type:text/html;charset=utf-8");
//定义数据库主机地址
$host="localhost";
//定义mysql数据库登录用户名
$user="root";
//定义mysql数据库登录密码
$pwd="";
//链接数据库
$conn = mysql_connect($host,$user,$pwd);
//对连接进行判断
if(!$conn){
die("数据库连接失败!".mysql_errno());
}else{
echo "数据库连接成功!";
}
?
php中和后台数据库连接的代码?php
mysql_connect("localhost","php连接数据库成功代码你php连接数据库成功代码的名字php连接数据库成功代码,一般为root","php连接数据库成功代码你的密码")or
die("cannot
connect
with
the
localhost.");
mysql_slect_db("php连接数据库成功代码你的数据库名字")
or
die("cannot
connect
with
the
database.");
//这就是连接数据库的代码,简单的写法 。
?
一段php 连接数据库的代码, 几个函数,再加几个变量 。。貌似代码有问题,请高手帮我看下代码经修改,运行成功:
?php
function dbConnect($hostname, $username, $pass, $db_name, $pconnect = 0)
{
global $connect;
$func = empty($pconnect) ? 'mysql_connect' : 'mysql_pconnect';
if (!$connect)
{
$connect = @$func($hostname, $username, $pass) or die("font size='2'Mysql_Error : " .
mysql_error() . "brMysql Error Num : " . mysql_errno() . "/font");
}
@mysql_select_db($db_name, $connect) or die("font size='2' Mysql_Error : " .
mysql_error() . "brMysql Error Num : " . mysql_errno() . "/font");
return $connect;
}
function query_error($query)
{
global $connect;
$temp_bar = "br=============================================================================br";
$result = mysql_query($query, $connect) or die("DB ERROR br" . $temp_bar .
"font size='2' Mysql_Query : " . $query . "br Mysql_Error : " . mysql_error
() . "br Mysql Error Num : " . mysql_errno() . "/font" . $temp_bar);
return $result;
}
function do_fetch_array($result, $result_type = MYSQL_ASSOC, $records = "one")
{
$icount = mysql_num_rows($result);
if ($records == "one")
{
return @mysql_fetch_array($result, $result_type);
} else
{
for ($i = 0; $i$icount; $i++)
{
$info[$i] = @mysql_fetch_array($result, $result_type);
}
mysql_free_result($result);
return $info;
}
}
function error_msg($msg, $url = "")
{
global $connect;
if ($connect)
{
mysql_close($connect);
}
switch ($url)
{
case "":
$url = "history.go(-1)";
break;
case "close":
$url = "window.close()";
break;
default:
$url = "document.location.href = 'https://www.04ip.com/post/$url'";
break;
}
if (!empty($msg))
{
echo "script language='javascript'alert('$str');$url;/script";
} else
{
echo "script language='javascript'$url;/script";
}
exit;
}
$hostname = "localhost";
$username = "root";
$pass = "root";
$db_name = "books";
$connect = dbConnect($hostname, $username, $pass, $db_name);
$recs = query_error('select * from books');
$rec = do_fetch_array($recs,MYSQL_ASSOC,'all');
echo 'pre';
print_r($rec);
echo '/pre';
?
几种常用PHP连接数据库的代码示例PHP连接数据库之PHP连接MYSQL数据库代码
推荐阅读
- 网络游戏知识问答,网络游戏知识问答游戏题目
- 风行电视是什么电视,风行电视?
- 怎么讲ppt保存为pdf,ppt保存成pdf
- js前端数据传输加密,前端js代码加密
- c语言函数地址表 c语言函数的地址
- 为什么拔出u盘电视黑屏,为什么u盘的视频在电视上无法播放
- 怎么用ip代理软件更换本地ip地址吗,电脑代理ip切换软件
- 斗鱼直播+3934198,斗鱼直播怎么赚钱
- python函数表格缩进 python怎么缩进几个格