การแก้ไข Error Deprecated: Function mysql_db_query() is deprecated
หลังจากที่ EVO Hosting ได้อัพเกรด PHP 5.2 เป็น PHP 5.3 ไป นั้น หลายท่านพบ error ที่แสดงบนหน้าเว็บ เช่น
Deprecated: Function mysql_db_query() is deprecated in /home/Account/domains/YourDomain.com/public_html/config.in.php on line 10
นั่นหมายความว่า Function ที่เว็บท่านใช้อยู่คือ mysql_db_query นั้น ได้ถูกยกเลิกการใช้งานใน PHP 5.3 แล้ว
ต้องหา Function ใหม่มาใช้งาน นั่นคือ Function mysql_query
โดยแก้ไขจากเดิม
$sql = mysql_db_query($dbname,"select title,picture from ".$fix."catalog where category='1' ");
เป็น
$sql = mysql_query("select title,picture from ".$fix."catalog where category='1' ");
และแก้ไขในทุก ๆ Line ที่แสดง error