mysql - Uncaught Error: Call to undefined function mysql_connect() - each time I run my php file it shows me this error -
im using windows 8.1, using xampp server im newbie, learning php, have issue in connecting php database
; windows: "\path1;\path2" include_path=".;\xampp\php\pear" also removed comments php.mysql.dll
;extension=php_exif.dll ; must after mbstring depends on extension=php_mysql.dll extension=php_mysqli.dll ;extension=php_oci8.dll ; use oracle 10gr2 instant client kindly me, solve issue... :(
that's because mysql extension has been removed. judging using outdated lesson.
the new extension mysqli , so, instead of mysql_connect, use mysqli_connect. take account parameters might in different order mysqli.
Comments
Post a Comment