浅谈PHP如何连接到MySql数据库
发布网友
发布时间:2022-04-25 15:07
我来回答
共1个回答
热心网友
时间:2022-04-07 07:03
也不好多说,发一小段代码,你参照一下。代码如下:
try
{
header("Content-type: text/html; charset=utf-8");
$conn=new PDO("mysql:host=localhost;dbname=webdata","user","pwd");
$sth=$conn->prepare("select * from books");
$sth->execute();
while($res=$sth->fetch(PDO::FETCH_ASSOC))
{
echo("<div>".$res["bid"].":".$res["title"]."--".$res["author"]);
}
}
catch(Exception $e)
{
header("Content-type: text/html; charset=gb2312");
echo($e->getMessage());
}