最近在我的主机更新了它的 php 版本后,我的网站出现了错误,这是错误消息
Deprecated: Function mysql_db_query() is deprecated in /my_path/file.php on line 13
Deprecated: Function mysql_db_query() is deprecated in /my_path/file.php on line 14
这是file.php
require_once("db.php"); // connect
$timeoutseconds = 100;
$timestamp=time();
$timeout=$timestamp-$timeoutseconds;
mysql_db_query($db, "INSERT INTO online VALUES ('$timestamp','$REMOTE_ADDR','$PHP_SELF')") or die("0 Users online"); // this is line 13 that shows error
mysql_db_query($db, "DELETE FROM online WHERE timestamp<$timeout") or die("0 Users online"); // this is line 14 that shows error
有没有解释这个错误以及如何解决它?~ 谢谢
注意:我知道mysqli
但pdo
不能转移到任何,因为我的网站主要依赖mysql
并且需要几个月来进行重大更改,所以请你坚持下去mysql
。