本文实例讲述了PHP提示 Deprecated: mysql_connect(): The mysql extension is deprecated的解决方法,在PHP程序开发中常会遇到这类问题。分享给大家供大家参考,具体的解决方法如下:
将下面代码改为mysqli或PDO即可。
function connectit () { global $CFG; mysql_connect($CFG['db_host'], $CFG['db_user'], $CFG['db_pass']) or die(mysql_error()); mysql_select_db($CFG['db_name']); }
PDO:
$dbh = new PDO('mysql:host=localhost;dbname=test', $user, $pass);
MYSQLI:
$link = mysqli_connect( 'localhost', /* The host to connect to 连接MySQL地址 */ 'user', /* The user to connect as 连接MySQL用户名 */ 'password', /* The password to use 连接MySQL密码 */ 'world'); /* The default database to query 连接数据库名称*/ if (!$link) { printf("Can't connect to MySQL Server. Errorcode: %s ", mysqli_connect_error()); exit; }
希望本文所述对大家的PHP程序设计有所帮助。
本文向大家介绍php提示Warning:mysql_fetch_array() expects的解决方法,包括了php提示Warning:mysql_fetch_array() expects的解决方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了php提示Warning mysql_fetch_array() expects的解决方法,分享给大家供大家参考。具体分析如下: 在mysql
本文向大家介绍PHP常见的6个错误提示及解决方法,包括了PHP常见的6个错误提示及解决方法的使用技巧和注意事项,需要的朋友参考一下 在php开发过程中,由于不知道向谁求助而心慌意乱地判断以为自己不适合学php。其实错误在每个人学习过程中都会碰到的,千万不要妄自菲薄。很多错误在报错的代码提示中已经告诉我们了,仔细看,不会就百度。现总结一些常见的php错误,以共享php新人。 Php常见错误提示 一、
本文向大家介绍PHP 中提示undefined index如何解决(多种方法),包括了PHP 中提示undefined index如何解决(多种方法)的使用技巧和注意事项,需要的朋友参考一下 一、相关信息 平时用$_post['']或$_get['']获取表单中参数时会出现Notice: Undefined index: --------; 以及我们经常接收表单POST过来的数据时报Undefin
本文向大家介绍PHP提示Warning:phpinfo() has been disabled函数禁用的解决方法,包括了PHP提示Warning:phpinfo() has been disabled函数禁用的解决方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了PHP提示Warning:phpinfo() has been disabled函数禁用的解决方法。分享给大家供大家参考。具体
本文向大家介绍apache提示Failed loading ZendLoader.dll解决方法,包括了apache提示Failed loading ZendLoader.dll解决方法的使用技巧和注意事项,需要的朋友参考一下 在折腾MiniServer时,发现不管我怎么配置,apache总会提示“Failed loading…ZendLoader.dll”,就是说ZendLoader很悲催的没有
本文向大家介绍python提示No module named images的解决方法,包括了python提示No module named images的解决方法的使用技巧和注意事项,需要的朋友参考一下 本文讲述了python提示No module named images的解决方法,非常实用!分享给大家供大家参考。具体方法如下: 出现提示:ImportError: No module named