Kamis, 10 Maret 2016

Deprecated: mysql_connect()

saya pernah mengalami problem "Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\xampp\htdocs\ijo\functions\fungsi_kalender.php  on line 101" ketika mencoba menginstall CMS Balitbang Ijo royo royo Gubahan mas Aris Munandar, sempat strees waktu itu, namun setelah googling kesana kemari akhirnya ketemu juga, ternyata problemnya ada pada versi PHP yang aku pakai.

Local server aku pakai XAMPP v. 5.5.19, sehingga fungsi yang awalnya :

mysql_connect($hostLH,$userLH,$passLH) 
mysql_select_db($dbLH)

Kita ganti menjadi:

mysqli_connect($hostLH,$userLH,$passLH,$dbLH) or die("Connection Fail ".mysql_error());

Silahkan dicoba, semoga berhasil.....
cara ini juga berhasil untuk CMS lain yang muncul pesan error yang sama.



Thanks to http://stackoverflow.com/questions/21797118/deprecated-mysql-connect for the helpfull information