“Panggilan ke fungsi yang tidak ditentukan mysql_connect ()” Kode Jawaban

Panggilan ke fungsi yang tidak ditentukan mysql_connect ()

Try checking to see if the PHP MySQL extension module is being loaded:

<?php
    phpinfo();
?>

If it's not there, add the following to the php.ini file:

extension=php_mysql.dll

Save and Restart You Apache HTTP Server
Ankur

Kesalahan Tak Terbaik: Panggilan ke DatabaseDold Fungsi yang Tidak Ditentukan mysqli_connect ()

sudo apt install php-mysqli
Friendly Hawk

Panggilan ke fungsi yang tidak ditentukan mysql_connect ()

In case, you are using PHP7 already, the formerly deprecated functions
mysql_* were removed entirely, so you should update your code using the
PDO-functions or mysqli_* functions instead.

If that's not possible, as a workaround, rubo77 created a small PHP include
file, that recreates the old mysql_* functions with mysqli_*()-functions:
https://github.com/rubo77/php-mysql-fix
Breyn

Jawaban yang mirip dengan “Panggilan ke fungsi yang tidak ditentukan mysql_connect ()”

Pertanyaan yang mirip dengan “Panggilan ke fungsi yang tidak ditentukan mysql_connect ()”

Lebih banyak jawaban terkait untuk “Panggilan ke fungsi yang tidak ditentukan mysql_connect ()” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya