Answered step by step
Verified Expert Solution
Question
1 Approved Answer
mysql database question. what are the alternatives for mysql_query() and mysql_result() functions as i found out that they were deprecated in php7. in other words
mysql database question. what are the alternatives for mysql_query() and mysql_result() functions as i found out that they were deprecated in php7.
in other words i have this function how can i properly change mentioned mysql functions to the new ones?
function user_exists($username) {
$username = sanitize($username);
$query = mysql_query("SELECT COUNT('id') FROM 'users' WHERE 'username' = '$username'");
return (mysql_result($query, 0) == 1) ? true : false;
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started