<php>过时方法连接数据库代码

Posted 怪咖咖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了<php>过时方法连接数据库代码相关的知识,希望对你有一定的参考价值。

<?php
            //1.生成链接
    $db_connect = mysql_connect("localhost","root","20982239");
        //2.选择操作哪个数据库
        mysql_select_db("mydb",$db_connect);
        //3.写sql语句
        $sql = "delete from Info where Code=‘p001‘";
        //执行sql语句
        $result = mysql_query($sql);
        
        //var_dump($result);
        //处理查询结果
    /*    $row = mysql_fetch_row($result);
        
        print_r($row);
        */
        echo $result;
?>

 

以上是关于<php>过时方法连接数据库代码的主要内容,如果未能解决你的问题,请参考以下文章

mysql 连接闪断自动重连的方法(用在后台运行中的PHP代码)

Android Studio编译OsmAnd出现警告:GeoPointParserUtil.java使用或覆盖了已过时的 API。有关详细信息请使用-Xlint:deprecation重新编译(代码片

mysql 错 Could not open JDBC Connection for transaction; nested exception is java.sql.SQLExceptio(代码片

为 PHP 5.4 编写 C++ 扩展,示例代码已过时

代码片-下拉树实现

连接数据库 ,登录 注册