PHP网页怎么连接到MYSQL数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP网页怎么连接到MYSQL数据库相关的知识,希望对你有一定的参考价值。

<?php $conn=@mysql_connect("localhost","root","")or die("连接错误"); mysql_select_db("liuyanban",$conn); mysql_query("set names 'GBK'"); ?>连接数据库的代码是这样没错吧、可是在网页上操作后在数据库上查询不到数据。求详解

参考技术A 你写的这个只是数据库连接的代码,你只是连接了数据库,可以对你的“”数据库进行"CURD"操作,$conn返回的是resource,mysql_select_db()和
mysql_query()返回的则是布尔类型,所以在浏览器预览的时候是没有任何内容的,有内容也只是一个TRUE

连接数据库的代码如下:
数据库操作类
class
mysql


private
$db_host;
//数据库主机

private
$db_user;
//数据库用户名

private
$db_pwd;
//数据库密码

private
$db_database;
//数据库名

private
$conn;
//数据库连接标识;

private
$sql;
//sql执行的语句

private
$result;
//query的资源标识符

private
$coding;
//数据库编码,gbk,utf8,gb2312

private
$show_error
=
true;
//本地调试使用,打印错误
public
function
__construct($db_host,
$db_user,
$db_pwd,
$db_database,
$coding)


$this->db_host
=
$db_host;

$this->db_user
=
$db_user;

$this->db_pwd
=
$db_pwd;

$this->db_database
=
$db_database;

$this->coding
=
$coding;

$this->connect();


private
function
connect()


$this->conn
=
@mysql_connect($this->db_host,
$this->db_user,
$this->db_pwd);

if
(!$this->conn)


//show_error开启时,打印错误

if
($this->show_error)


$this->show_error('错误提示:链接数据库失败!');





if
(!@mysql_select_db($this->db_database,
$this->conn))


//打开数据库失败

if
($this->show_error)


$this->show_error('错误提示:打开数据库失败!');





if
(!@mysql_query("set
names
$this->coding"))


//设置编码失败

if
($this->show_error)


$this->show_error('错误提示:设置编码失败!');






以上是关于PHP网页怎么连接到MYSQL数据库的主要内容,如果未能解决你的问题,请参考以下文章

PHP网站怎么连接到数据库?

无法使用 PHP 页面连接到 MySQL

使用 PHP 从 Swift 连接到在线数据库 (mySQL)。 (XCODE)

连接网站显示数据库错误:无法连接到数据库:无法连接到MySQL?

如何在一个网页上连接多个 MySQL 数据库?

使用php百度BAE怎么连接数据库啊