我觉得完全不理解我做错了什么,但这里就是这样。
我正在编写一个简单的 Web 表单,将信息存储在 MySQL 数据库中。我收到此错误:
mysqli_stmt_init() expects parameter 1 to be mysqli, null given in /myfile.php
这是我的代码:
$server = 'localhost';
$username = 'myusername';
$password = 'mypassword';
$db = 'mydb';
$link = mysqli_connect($server, $username, $password, $db);
.
.
.
$stmt = mysqli_stmt_init($link); /*This line throws the error*/
有任何想法吗?提前致谢。