//music ตาราง เพลงที่ออกอากาศไปแล้ว มีฟิล
id | song | artist
//request ตาราง เพลงที่มีการขอให้เปิด
id | song | artist
โดยเวลาส่งค่า post มา จะเริ่มทำการตรวจสอบ ว่ามีข้อมูล song และ artist ตรง music หรือไม่ ถ้ามี =เพลงนี้เปิดไปแล้ว
หากไม่มี ให้ตรวจสอบที่ request แทนค่ะ ถ้ามี=เพลงนี้มีคนขอให้เปิดแล้ว
$result="select * from music where name ='$name' and artist = '$artist' ";
$db_query = mysql_query($result);
$num_rows = mysql_num_rows($db_query);
if($num_rows != 0){
echo '<center>เราได้เปิดเพลง '.$name.' - '.$artist.' ไปแล้ว<br/>
}else{ ..................}