php mysql

Posted lyxsalyd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php mysql相关的知识,希望对你有一定的参考价值。

参考链接:

https://www.runoob.com/php/php-mysql-create.html

php连接mysql

以下两种方式:
Mysqli extension
PDO

mysqli执行sql语句

$query = "select first_name,last_name" from users where user_id=‘$id‘";
$result = mysqli_query($conn,$query);
while($row = mysqli_fetch_assoc($result)){
$first = $row["first_name"];
$last = $row["last_name"];
$html .= "

ID: {$id}
First name: {$first}
Surname: {$last}
";
}

PDO执行sql语句

$data = $db->prepare( ‘SELECT first_name, last_name FROM users WHERE user_id = (:id) LIMIT 1;‘ );
$data->bindParam( ‘:id‘, $id, PDO::PARAM_INT );
$data->execute();
$row = $data->fetch();
当然还有对于整数的查询和模糊查询,加上对应的闭合即可。

以上是关于php mysql的主要内容,如果未能解决你的问题,请参考以下文章

PHP必用代码片段

PHP代码-psysh调试代码片段工具

超实用的php代码片段

比较有用的php代码片段

php Yoast SEO规范输出的代码片段

php Yoast SEO规范输出的代码片段