YouTube のチュートリアルに従って CMS を構築しようとしています。それが作成しているエラーメッセージについて本当に混乱し始めています。次のエラーが表示されます
警告: mysqli_query() は、パラメーター 1 が mysqli であることを想定しています。null は、7 行目の /home/a8241081/public_html/index.php で指定されています。
私のコードは正しいですか?mysqli_select ステートメントが必要ですか?
<?php
$db_host = "********";
$db_username = "******";
$db_pass = "*******";
$db_name = "********";
mysqli_connect("$db_host","$db_username","$db_pass", "$db_name") or die ("could not connect to mysql");
?>
<?php
session_start();
require_once "scripts/connect_to_mysql.php";
//Build Main Navigation menu and gather page data here
$sqlCommand = "SELECT id, linklabel FROM pages ORDER BY pageorder ASC";
$query = mysqli_query($myConnection,$sqlCommand);
$menuDisplay='';
while ($row=mysqli_fetch_array($query)){
$pid=$row["id"];
$linklabel=$row["linklabel"];
$menuDisplay .='<a href="index.php?pid=' . $pid . '">' . $linklabel . '</a><br/>';
}
mysqli_free_result($query);
//mysqli_close($myConnection);
?>