Php reports an error after it is deployed to a network server?

you can connect to the database in the local phpStudy environment, so why do you report an error when you put it on a network server?

the following is the request code:

   
there is no problem locally. Just get in touch with PHP for the first time

.
Jun.03,2021

mysql extension is not installed in the web server PHP environment.
the mysql extension is no longer recommended and has been removed in PHP7.
http://www.php.net/manual/zh/.


the message to report an error is to say

$_GET['columns'][$j]['searchable'];

$_ GET does not have the key columns (key)


figure 2, the server-side PHP version is too high because the mysql_* series of functions have been completely removed from the PHP7, resulting in no errors in the functions.

Menu