Sunday, 17 July 2016

php - Deprecated mysql functions?

I have changed my code to cater the new functions of MySQLi. Here is a snippet of my code:



From:



mysqli_query("SELECT user_type FROM user");



To:



mysqli_query("SELECT user_type FROM user");


Although this now does not work, what else would I need to change?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...