时间:2021-07-01 10:21:17 帮助过:11人阅读
确保wamp里已经安装好了MySQLi或PDO,查看方式:echo phpinfo();
接下来将会使用以下三种方式来演示 PHP 操作 MySQL:
1. MySQLi - 面向对象
<?php header(‘Content-Type: text/html;charset=utf-8‘); //echo phpinfo(); // MySQLi面向对象 // 在我们访问MySQL数据库之前,我们需要先连接到数据库服务器 $servername = "localhost"; $username = "root"; $password = ""; // 创建连接 $conn = new mysqli($servername, $username, $password); // 检测连接 if($conn -> connect_error) { die("连接失败:". $conn->connect_error); } echo "连接成功"; ?>
2. MySQLi - 面向过程
<?php header(‘Content-Type: text/html; charset=utf-8‘); // MySQLi - 面向过程 $servername = "localhost"; $username = "root"; $password = ""; // 创建连接 $conn = mysqli_connect($servername, $username, $password); // 检测连接 if(!$conn) { die("连接失败:" . mysqli_connect_error()); } echo "连接成功"; ?>
PHP连接MySQL数据库的几种方式
标签:需要 处理 接下来 共同点 htm 安全 版本 text web