I'm working transferring my functions from MySQL to MySQLi standards.
This is my old function for getresult
function getResult($sql) {
$result = mysql_query($sql, $this->conn);
if ($result) {
return $result;
} else {
die("SQL Retrieve Error: " . mysql_error());
}
}
However, I have been following the W3schools on the mysqli_query function. Here's where I'm presently at.
function getResult($connection){
$result = mysqli_query($connection->conn);
if ($result) {
return $result;
} else {
die("SQL Retrieve Error: " . mysqli_error());
}
}
Now, the examples on W3schools are just a bit different from how I want to use mysqli_query. I'm trying to make it be directed at my DB, not some input or constants as per examples on W3S.
Notice: Trying to get property of non-object in C:xampphtdocscadfunc.php on line 92
Warning: mysqli_query() expects at least 2 parameters, 1 given in C:xampphtdocscadfunc.php on line 92
Warning: mysqli_error() expects exactly 1 parameter, 0 given in C:xampphtdocscadfunc.php on line 96
SQL Retrieve Error:
Thank you
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…