function show_news($x){
require("connect.php"); // connect database
$sql="select * from announce where group like '$x';";
$result = mysql_query($sql);
while($rows = mysql_fetch_array($result)){
$title=$rows[name];
echo"$title";
}
}
เวลาเรียกใช้
$group="hotnews";
show_news($group);
แสดงค่า error เป็น
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource
แต่พอเปลี่ยน sql ใน function เป็น $sql="select * from announce;";