I have many simple PHP files with MySQL queries that I need to modify since my webhost migrated from PHP5 -> PHP7. I am pretty much a PHP/MySQL beginner trying to wrap my head around the changes from MySQL to MySQLi.
I've begun reading the PHP docs re: MySQLi but am getting stuck on mysqli_query at the moment.
Here is the MySQLi code I've tried so far:
<?php
$con = mysqli_connect("localhost”,     “my_user","my_password,"my_db”);
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
$result = mysqli_query("SELECT image, caption
            FROM tbllinkcat, tblimages
        WHERE tbllinkcat.catid = tblimages.catid
            AND tbllinkcat.catid=1;");      
while($row = mysql_fetch_array($result))
  {
    echo $row['image'];
    echo "<br />";
    echo $row['caption'];
    echo "<br />";
  }
mysql_close($con);
?>
I'm pretty sure the mysqli_connect code is working but I get errors on the mysqli_query code (error: Warning: mysqli_query() expects at least 2 parameters.
And I am pretty sure I will get errors on the mysql_fetch_array too once I correct mysqli_query. So for now I was wondering if someone could just show me an example of a mysqli_query that would work for the specific SQL statements in my code above? I will continue reading the PHP docs for MySQli and mysqli_query. Thank you.
 
     
    