Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions