function select($table,$condition)
{
$sql = "select * from $table $condition";
$dbquery = mysql_query($sql);
$result= mysql_fetch_array($dbquery);
return $result;
}
ตอนเรียกใช้ เงือนไข
Code
$result=select("videoname join videocatalogy on videoname.vcat_id = videocatalogy.vcat_id where 1=1 and vname_id='".$_GET["vname_id"]."'");
ข้อมูลออกตามที่เราต้องการ แต่มันมี error โชว์ค่ะ
Code
Warning: Missing argument 2 for select(), called in C:\AppServ\www\admin\detailvideo.php on line 63 and defined in C:\AppServ\www\connect\function.php on line 29