“Rufen Sie zu undefined Function mySQL_Connect ()” Code-Antworten

Rufen Sie zu undefined Function 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

Unbefundter Fehler: Rufen Sie auf undefined Function Databaseold mysqli_connect () auf

sudo apt install php-mysqli
Friendly Hawk

Rufen Sie zu undefined Function 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

Ähnliche Antworten wie “Rufen Sie zu undefined Function mySQL_Connect ()”

Fragen ähnlich wie “Rufen Sie zu undefined Function mySQL_Connect ()”

Weitere verwandte Antworten zu “Rufen Sie zu undefined Function mySQL_Connect ()” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen