最近、ホスティングがその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
。