referencing the third line of this snippet of code:Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource
Code: Select all
$SQLstring = "SELECT * FROM student WHERE id = '$id'";
$QueryResult = mysqli_query($db, $SQLstring);
$Row = mysql_fetch_array($QueryResult);Michael