ช่วยดูโค้ดให้หน่อยค่ะเขียน script แล้วเรียกที่ใช้งานที่ปุ่มแต่พอกดปุ่มแล้วไม่เกิดอะไรขึ้นเลยไม่แน่ใจว่าเขียน script ถูกต้องหรือป่าว
เปลี่ยน
<input type='button ' name='update' value='อนุมัติ' OnClick='javascript:updatestatus();'>";
เป็น
<input type='submit ' name='update' value='อนุมัติ' OnClick='javascript:updatestatus();'>";
และ
<input type='button ' name='delete' value='ลบ' OnClick='javascript:delete_vdo();'>
เป็น
<input type='reset ' name='delete' value='ลบ' OnClick='javascript:delete_vdo();'>
ลองดูครับไม่รู้ตรงกับความต้องการรึป่าว?
Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApprovedVideo</title>
</head>
<body bgcolor="#CCCCCC"font-size="16px">
<script language="javascript">
function updatestatus()
{
<?php
if($_POST["updatestatus"]!==null)
{
mysql_connect("localhost","root","root")or die("mysql error");
mysql_select_db("videoreview")or die("mysql error");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$id=$_POST["vid"];
$sql_edit="update videoreview set vdo_status='2' where vid ='$id'";
mysql_query($sql_edit) or die (mysql_error());
//echo$sql_edit;
}
?>
}
</script>
<script>
function delete_vdo()
{
<?php
if($_POST["delete"] !=null)
{
mysql_connect("localhost","root","root")or die("mysql error");
mysql_select_db("videoreview")or die("mysql error");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$id_d=$_POST["vid"];
$delete_vdo="DELETE FROM vidoreview WHERE vid = '$id_d'";
mysql_query($delete_vdo) or die(mysql_error());
echo $delete_vdo;
}
?>
}
</script>
<Form method="post" action="">
<center><div style="background-color:#F5F9FD;height:Auto;width:80%;text-align:left; ">
<center><div div style="background-color:#FAFAD2;height:Auto;width:95%;text-align:left; ">
<h2 style="margin-bottom:0;"><font color="#00BFFF">ApprovedVideo</font></h2>
<?php
mysql_connect("localhost", "root", "root") or die("mysql error");
mysql_select_db("videoreview") or die("mysql error");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$sql_result = mysql_query("SELECT * FROM videoreview WHERE vdo_status ='1' order by vid asc");
$path_img = "img/";
$path_vdo = "video/";
while ($result = mysql_fetch_array($sql_result))
{
echo"<tr>";
echo"<td>";
if($result["review_img_path"]!="")
{
echo"<img style='width:70px; height:100px;' src='".$path_img . $result["review_img_path"]."'>";
}
elseif($result["review_img_path"]== null)
{
echo"<img style='width:70px; height:100px;' src='img/img.jpg'>";
}
echo"</td>";
echo"<td>";
echo"ID".$result["vid"]. "ชื่อ " . $result["review_name"] . "";
echo"</td>";
echo"<br>";
echo"</tr>";
echo"<tr>";
echo"<td>";
echo"Title " . $result["comment"] . "";
echo"</td>";
echo"<br>";
echo"</tr>";
echo"<tr>";
echo"<td>";
if ($result["video_type"] == "y")
{
echo"<embed src='http://www.youtube.com/embed/".$result["video_url"]."?fs=1&hl=en_US&rel=0'type='application/x-shockwave-flash'
width='560' height='315' allowscriptaccess='always' allowfullscreen='true'
pluginspage='http://www.adobe.com/go/getflashplayer'></embed>";
}
elseif ($result["video_type"] == "u")
// echo "u";
{
$vdo= $path_vdo.$result["video_path"];
echo"<video width='560' heigth='315' controls>
<source src='$vdo' type='video/mp4'/>
<object data='$vdo' width='560' heigth='315'>
<embed width='560' heigth='315' src='$vdo'>
</object> </video>";
}
echo"</td>";
echo"</tr>";
echo"<input type='submit' name='update' value='อนุมัติ' OnClick='javascript:updatestatus();'>";
echo" ";
echo" ";
echo"<input type='reset' name='delete' value='ลบ' OnClick='javascript:delete_vdo();'>";
echo"<br>";
}
?>
</div></center>
</div></center>
</form>
</body>
</html>
<?php
mysql_close();
?>
Date :
2013-05-10 13:39:26
By :
arm8957
ลองเปลี่ยนตามที่บอกแล้วค่ะก้อไม่มีอะไรเกิดขึ้นเหมือนเดิม
Date :
2013-05-10 14:08:22
By :
Ryo
ฟังก์ชั่น function updatestatus() มันทำงานไม่ได้ครับ
ให้เปลี่ยนไปใช้ Ajax ส่งค่า ไปหน้าใหม่แทนนะครับ
Date :
2013-05-10 14:18:13
By :
Naizan
Load balance : Server 04