php文件链接数据库基本代码

1
2
3
4
5
6
7
8
9
10
<?php
    $conn=@mysql_connect("localhost","root","");
    if($conn==null)
        die("数据库连接失败1,因为你的账户密码错误");
    mysql_query("set names ‘gb2312‘");
    if(!mysql_select_db("root"))
    {
        die("数据库连接失败2,因为你的数据库名不对");
    }
?>

  

1
$conn=@mysql_connect("localhost","root","");括弧里分别填写  数据库路径 数据库用户名 数据库密码<br><br>
1
if(!mysql_select_db("root"))  root的意思是数据库名

php文件链接数据库基本代码

上一篇:html 图像映射(一个图像多个连接)


下一篇:poemlo代码分析系列2————web-server介绍,代码,工具,方法