PHP 5 version, 5.2, 5.3, 5.4, 5.5, afraid to keep up with the times, the new server directly on the 5.5, but the program appears the following error: Deprecated:mysql_connect (): The MySQL extension is Deprecated And will is removed in the Future:use mysqli or PDO instead in, see the meaning is very clear, said mysql_connect This module will be deprecated in the future, please use MYSQLI or PDO instead.
Workaround 1:
Prohibit PHP error
Since this server is for users, sometimes they need to make an error (...). Are for friends, ^_^), can not do this, let them change the program bar, see Program 2.
Workaround 2:
Common PHP syntax to connect MySQL is as follows
$link = mysql_connect( ‘localhost‘ , ‘user‘ , ‘password‘ ); |
mysql_select_db( ‘dbname‘ , $link ); |
$link = mysqli_connect( ‘localhost‘ , ‘user‘ , ‘password‘ , ‘dbname‘ ); |
MySQL is commonly used to build table SQL as follows
mysql_query( ‘CREATE TEMPORARY TABLE `table`‘ , $link ); |
mysqli_query( $link , ‘CREATE TEMPORARY TABLE `table`‘ ); |
Workaround Three:
Set the alarm level in the PHP program code
error_reporting (E_ALL ^ E_DEPRECATED); |
Deprecated's problem is solved, but it is recommended that you cancel the MySQL users as soon as possible, all toward mysqli or Mysqlnd and so on. MySQL is really too insecure and too old.
Reprint Please specify source: http://www.ttlsa.com/html/2502.html
Copyright Note Article title: Resolve Deprecated:mysql_connect (): The MySQL extension is deprecated and would be removed in the Future:use mysqli o R PDO instead in
This address: http://www.ttlsa.com/php/deprecated-mysql-connect/
Unless noted, the blog article is "operation and maintenance of survival Time" original, reproduced please indicate the address of this article
Solution Deprecated:mysql_connect (): The MySQL extension is deprecated and would be removed in the future: