当前位置:Gxlcms > 数据库问题 > PHP mysqli学习(五)预处理

PHP mysqli学习(五)预处理

时间:2021-07-01 10:21:17 帮助过:2人阅读

$mysqli = @new mysqli("localhost:3306", "root", "root", "zhy"); if ($mysqli->connect_errno) { die("MYSQL CONNECT ERROR:" . $mysqli->connect_error); } $mysqli->set_charset(‘utf8‘); $sql = ‘INSERT INTO user (name, age, description) VALUES (?,?,?)‘; $mysqli_stmt = $mysqli->prepare($sql); //print_r($mysqli_stmt); for ($i = 0; $i < 5; $i++) { $name = ‘prepare‘ . $i; $age = 25 + $i; $description = ‘description‘ . $i; $mysqli_stmt->bind_param(‘sis‘, $name, $age, $description); if ($mysqli_stmt->execute()) { echo $mysqli_stmt->insert_id; echo ‘<br/>‘; } else { echo $mysqli_stmt->error; } }

 

PHP mysqli学习(五)预处理

标签:

人气教程排行