mysql error replacement

Solutions on MaxInterview for mysql error replacement by the best coders in the world

showing results for - "mysql error replacement"
Margo
28 Oct 2016
1mysql_error will be replaced by mysqli_error and/or mysqli_connect_error, depending on the context
2mysql_query will be replaced by mysqli_query
3eg:
4mysql_query($query)
5becomes 
6mysqli_query($link, $query)
similar questions
queries leading to this page
mysql error replacement