ちょっと私は現在、このコードに取り組んでおり、HTML フォームのエントリに応じて学生のリストを作成しています。次のエラーが表示されます。
Warning: mysqli_query() expects parameter 1 to be mysqli, string given in ..... on line 15.
私は多くの変更と再配置を行いましたが、それを機能させることができないようです. 助けのヒントは絶対に素晴らしいでしょう!!
コードは次のとおりです。
<?php
require_once 'connect.php';
mysql_select_db("db_ll20g11");
if ($_POST ['criterion'] == 'c'){
$status = 'current';
echo 'Current students list<br/>';
}
else{
$status ='left';
echo' Left Students list <br/>';
}
$listings = "SELECT * FROM student WHERE status ='".$status."'";
$results = mysqli_query($listings, $connect);
//mysqli_fetch_query not working
while ($row = mysqli_fetch_array($results))
{
echo 'Name:' .$row['name'] . " " .' Date of Birth:' .$row['dateOfBirth'] . " " . 'Gender:' .$row['gender'] . " " .'Email:' .$row['email']. " ";
}
echo '<br />';
?>
ありがとうございました。