Any of the programmer types on here able to tell me why this is kicking out the following error?
I've tried 2 different sets of php code and its still kicking errors out on me 
Here was the original code:
This is what I'm currently using (ditched regexp):
Basically, I'm trying to get a set of recipes displayed where they contain 2 categories, in this instance 'air' and 'fryer' which should display any Air Fryer recipes, but it doesnt, any help would be greatly appreciated, this is my first time screwing with multipe queries to display results
[20-May-2022 23:33:21 America/Chicago] PHP Warning: mysqli_query() expects parameter 1 to be mysqli, null given in /blah/blah/domain.com/members/test/index.php on line 62
[20-May-2022 23:33:21 America/Chicago] PHP Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, null given in /blah/blah/domain.com/members/test/index.php on line 63
[20-May-2022 23:33:21 America/Chicago] PHP Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, null given in /blah/blah/domain.com/members/test/index.php on line 74
[20-May-2022 23:33:21 America/Chicago] PHP Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, null given in /blah/blah/domain.com/members/test/index.php on line 63
[20-May-2022 23:33:21 America/Chicago] PHP Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, null given in /blah/blah/domain.com/members/test/index.php on line 74
Here was the original code:
<?php
$con=mysqli_connect("localhost","db","pass","user" );
$result = mysqli_query($con,"SELECT * FROM Title WHERE Category REGEXP 'air' AND REGEXP 'fryer' ORDER BY Title ASC;");
echo "<table border='0'>
<tr>
</tr>";
while($row = mysqli_fetch_array($result))
{
$link = "../../recipes/recipe.php?id=".$row['RecipeID'];
echo "<tr>";
echo "<a href = ". $link . ">" . $row['Title'] . "</a><br>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>
$con=mysqli_connect("localhost","db","pass","user" );
$result = mysqli_query($con,"SELECT * FROM Title WHERE Category REGEXP 'air' AND REGEXP 'fryer' ORDER BY Title ASC;");
echo "<table border='0'>
<tr>
</tr>";
while($row = mysqli_fetch_array($result))
{
$link = "../../recipes/recipe.php?id=".$row['RecipeID'];
echo "<tr>";
echo "<a href = ". $link . ">" . $row['Title'] . "</a><br>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>
<?php
$con=mysqli_connect("localhost","db","pass","user" );
$sql = "SELECT * FROM Recipe WHERE Title RLIKE 'fryer' AND RLIKE 'Air' ORDER BY Title ASC;";
$result = mysqli_query($con,$sql);
while($r = mysqli_fetch_array($result))
if (!$check1_res) {
printf("Error: %s\n", mysqli_error($con));
exit();
}
echo "<table border='0'>
<tr>
</tr>";
while($row = mysqli_fetch_array($result))
{
$link = "../../recipes/recipe.php?id=".$row['RecipeID'];
echo "<tr>";
echo "<a href = ". $link . ">" . $row['Title'] . "</a><br>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>
$con=mysqli_connect("localhost","db","pass","user" );
$sql = "SELECT * FROM Recipe WHERE Title RLIKE 'fryer' AND RLIKE 'Air' ORDER BY Title ASC;";
$result = mysqli_query($con,$sql);
while($r = mysqli_fetch_array($result))
if (!$check1_res) {
printf("Error: %s\n", mysqli_error($con));
exit();
}
echo "<table border='0'>
<tr>
</tr>";
while($row = mysqli_fetch_array($result))
{
$link = "../../recipes/recipe.php?id=".$row['RecipeID'];
echo "<tr>";
echo "<a href = ". $link . ">" . $row['Title'] . "</a><br>";
echo "</tr>";
}
echo "</table>";
mysqli_close($con);
?>



Comment