我有一个关于在线图书馆的项目,但它是用MySQL查询写的,它已经停止服务。现在我必须将此代码转换为mysqli,我遇到了麻烦。请帮我解决这个错误:
注意:未定义的变量:C:\ Wamp \ www \ online中的conn 第106行的library \ register.php
警告:mysqli_query()期望参数1为mysqli,null给定 在第106行的C:\ Wamp \ www \ online library \ register.php
警告:mysqli_num_rows()期望参数1为mysqli_result, 第107行的C:\ Wamp \ www \ online library \ register.php中给出的null
我的代码行:
if(isset($_POST["B1"]) && @$_SESSION["done"]!="ture") {
$select="select id from user where username=".$_POST['T2'];
$result=mysqli_query($conn,$select);
$num=mysqli_num_rows($result);
@$name=$_REQUEST['T2'];
@$pas=$_REQUEST['T3'];
if(($_POST['T2']=='')||($_POST['T3']=='')) ;
我如何修复此错误? :(