我正在尝试连接到 MySQL 数据库以检查表(builditblocks)以查看用户在“名称”列中提供的数据。
这是我到目前为止所拥有的:
<?php
$temp=mysqli_query($con, "SELECT * FROM `builditblocks`.`module_index`.`name`");
$i = 0;
while($module = mysqli_fetch_array($temp))
{
"moduleArray[".$i."]=\"" . $module["name"]."\";" ;
$i++
//stuck here I need to know how to
//store them all in an array and check
//to see if the input matches any array elements
}
如果有名称,如何检查表?