อัพเดทแล้วแต่ข้อมูลไม่ลง Database อะครับ ค่าของการ vote ที่ เพิ่มไปทีละ 1 มันมาแล้วครับ แต่ ProductCode มันไม่มาอะครับ
คุณยังไม่ได้ดึง result มาเลยน่ะครับ
Code (PHP)
$sql = mysql_query("SELECT * FROM product WHERE ProductCode= '".$_GET["ProductCode"]."'");
$query = mysql_query($sql);
$result = mysql_fetch_array($query);
$vote = $result['vote']+1;
$memSQL = "UPDATE product SET vote = '$vote' where ProductCode = '".$_GET["ProductCode"]."' ";
Date :
2011-07-26 17:33:00
By :
webmaster
มันขึ้น อย่างงี้ อะครับ พี่วิน
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\webboard1\vote.php on line 17
UPDATE product SET vote = '1' where ProductCode = ''
Array
(
[อ่าวมายา_] =>
[28_] =>
[0] =>
)
Date :
2011-07-26 17:38:50
By :
XmatinX
ผิดล่ะครับ Code (PHP)
$sql = "SELECT * FROM product WHERE ProductCode= '".$_GET["ProductCode"]."'";
$query = mysql_query($sql);
$result = mysql_fetch_array($query);
$vote = $result['vote']+1;
$memSQL = "UPDATE product SET vote = '$vote' where ProductCode = '".$_GET["ProductCode"]."' ";
mysql_query($memSQL);
ดูตัวแปร $_GET["ProductCode"] ด้วยครับ ว่าส่งมาครบหรือเปล่า
Date :
2011-07-26 17:59:53
By :
webmaster
ขึ้นเหมือนเดิมอะครับ พี่วิน
Date :
2011-07-26 18:07:41
By :
XmatinX
จะไป select ทำไมครับ update มันเลย
Code (PHP)
mysql_query("UPDATE product SET vote = vote + 1 where ProductCode = '".$_GET["ProductCode"]."'");
Date :
2011-07-27 00:05:56
By :
PlaKriM
<?
//============ อ่านว่าเป็นหมวดหมุ่ใด
$resultHeadPro=select("category","where 1=1 and CatID='".$_GET["CatID"]."'");
if(!$resultHeadPro)
{
header("location:index.php");
}
echo "(".$resultHeadPro["CategoryName"].")";
//============ อ่านว่าเป็นรายการสินค้าชนิดใด
$resultDetail=select("product","where 1=1 and ProductID='".$_GET["ProductID"]."'");
if(!$resultDetail)
{
header("location:index.php");
}
echo " / (".$resultDetail["ProductCode"]." - ".$resultDetail["ProductName"]." - - ".$resultDetail["ProductID"].")";
?>
----------------------------------------------------------------------------------------------------
อันนี้เป็น ส่วนที่ผมจะให้ โหวต อะครับ
<img src="image/ed_image.gif" width="18" height="18" align="absmiddle"></strong><a href="vote.php?=<?=$resultDetail["ProductCode"];?> &<?=$resultDetail["ProductName"];?> & <?=$resultDetail["ProductID"];?> & <?=$resultDetail["vote"];?>">กดโหวตตรงนี้ </a> </p>
-----------------------------------------------------------------------------
อันนี้เป้นหน้า vote.php ครับ
<?
ob_start();
//============ Start Session áÅзӡÒÃàÃÕ¡ Function µÔ´µèÍ°Ò¹¢éÍÁÙÅ
session_start();
if($_SESSION['userlogin'] =="" )
{
echo"<script language='JavaScript'>";
echo"alert('·èÒ¹ÂѧäÁèä´éà¢éÒÊÙèÃкº');";
echo"window.location='index.php';";
echo"</script>";
}
require("connect/connect.php");
require("connect/function.php");
$sql = mysql_query("SELECT * FROM product WHERE ProductCode= '".$_GET["ProductCode"]."'");
$query = mysql_query($sql);
$result = mysql_fetch_array($query);
$vote = $result['vote']+1;
$memSQL = "UPDATE product SET vote = '$vote' where ProductCode = '".$_GET["ProductCode"]."' ";
echo "$memSQL";
echo "<pre>";
print_r($_GET);
echo"<script language='JavaScript'>";
echo"alert('ºÑ¹·Ö¡¢éÍÁÙÅáÅéÇ');";
echo"window.location='index.php';";
echo"</script>";
?>
--------------------------------------------------------------------------
Date :
2011-07-27 00:22:10
By :
XmatinX
Load balance : Server 03