码迷,mamicode.com
首页 > 数据库 > 详细

【解决方案】Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed

时间:2015-03-07 15:44:30      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:php   mysql   

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in F:\Program Files (x86)\wamp\www\testmysql.php on line 2

技术分享

<?php 
$link = mysql_connect('localhost','root',''); 
if (!$link) { 
	die('Could not connect to MySQL: ' . mysql_error()); 
} 
echo 'Connection OK'; mysql_close($link); 
?> 


解决方案

将mysql改为mysqli

<?php 
$link = mysqli_connect('localhost','root',''); 
if (!$link) { 
<span style="white-space:pre">	</span>die('Could not connect to MySQL: ' . mysqli_error()); 
} 
echo 'Connection OK'; mysqli_close($link); 
?> 

技术分享

【解决方案】Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed

标签:php   mysql   

原文地址:http://blog.csdn.net/jackson0714/article/details/44116601

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!