• PHP中数据库的操作(2)——连接数据库

    普通类
    • 支持
    • 批判
    • 提问
    • 解释
    • 补充
    • 删除
    • 默认段落标题(请修改)...

    第四部分:PHP中数据库的操作

    1.  PHP的数据库支持与使用

    连接到一个 MySQL 数据库,在您能够访问并处理数据库中的数据之前,您必须创建到达数据库的连接。在 PHP 中通过 mysql_connect() 函数完成。

    mysql_connect(servername,username,password);

    在下面的例子中,我们在一个变量中 (\$con) 存放了在脚本中供稍后使用的连接。如果连接失败,将执行 "die" 部分:

    <?php

    \$con = mysql_connect("localhost","peter","abc123");

    if (!\$con)

    {

    die('Could not connect: ' . mysql_error());

    }

    // some code

    ?>

    脚本一结束,就会关闭连接。如需提前关闭连接,请使用 mysql_close() 函数。

    <?php

    \$con = mysql_connect("localhost","peter","abc123");

    if (!\$con)

    {

    die('Could not connect: ' . mysql_error());

    }

    // some code

    mysql_close(\$con);

    ?>

     

    • 标签:
    • 关闭
    • localhost
    • 脚本
    • 操作
    • peter
    • 连接
    • mysql_connect
    • 39
    • php
    • 函数
    • 数据库
  • 加入的知识群:
    学习元评论 (0条)

    评论为空
    聪明如你,不妨在这 发表你的看法与心得 ~



    登录之后可以发表学习元评论
      
暂无内容~~
顶部