คือรับค่ามาจากหน้าจอแล้วนำมาคำนวณใน function คับแล้วอยากให้มันอัพเดทลงฐานข้อมูลอ่ะคับไม่รูั้ว่าถูกหรือเปล่าคือจะหาพิกัดของตารางคับ ช่วยแนะนำโค้ดและดูโค้ดให้ด้วยคับขอบคุณคับ
ขอข้อมูลเยอะกว่านี้กหน่อยครับ จะทำอะได้ และอยากได้อะไร แบบไหน
Date :
2011-12-09 10:27:39
By :
lootboom
ละเอียดกว่านี้ครับ
Date :
2011-12-09 17:01:54
By :
webmaster
Code (PHP)
function nnn($xx,$yy)
{
$xx= $xx-1;
$yy = $yy;
echo $xx;
echo $yy;
return;
include("include/connect.php");
$sql="update Color set value='green.gif'where X=$xx and Y=$yy";
}
nnn($a1,$b1);
ค่าไรได้หมดแล้วคับ แต่ตรงนี้
Code (PHP)
$sql="update Color set value='green.gif'where X=$xx and Y=$yy";
พอกดรันแล้วข้อมูลในฐานข้อมูลมันไม่เปลี่ยนแปลง
Date :
2011-12-10 01:26:20
By :
mmm
เคาะวรรคตรง where
Date :
2011-12-10 12:04:44
By :
ikikkok
ไม่ได้อ่ะคับ เป็นที่ประกาศ include หรือเปล่า งง คับ ของผมมี 9 function อยากให้มันรันพร้อมกันหมดอ่ะคับ แนะนำทีคับ
Date :
2011-12-12 01:58:06
By :
JUNE
-ขอโค้ดปัจจุบัน แล้วก็ปัญหาที่เจอครับ
Date :
2011-12-12 02:28:59
By :
kerb
Code (PHP)
<?php
$a1 =$_POST['a1'];
$b1 =$_POST['a2'];
function sum1($xx,$yy)
{
$xx= $xx-1;
$yy = $yy+1;
echo"<meta http-equiv=refresh content=1;URL=update.php?x=$xx&&y=$yy>";
echo " X='$xx' and Y='$yy'";
return;
}
sum1($a1,$b1);
function sum($xx,$yy)
{
$xx1= $xx-1;
$yy1 = $yy-1;
echo " X='$xx1' and Y='$yy1'";
echo"<meta http-equiv=refresh content=1;URL=update.php?x=$xx1&&y=$yy1>";
return;
}
sum($a1,$b1);
function ddd($xx,$yy)
{
$xx= $xx+1;
$yy = $yy+1;
echo $xx;
echo $yy;
echo"<meta http-equiv=refresh content=1;URL=update.php?kk=$xx&&hh=$yy>";
return;
}
ddd($a1,$b1);
function ggg($xx,$yy)
{
$xx= $xx+1;
$yy = $yy-1;
echo $xx;
echo $yy;
echo"<meta http-equiv=refresh content=1;URL=update.php?x=$xx&&y=$yy>";
return;
}
ggg($a1,$b1);
function jjj($xx,$yy)
{
$xx= $xx;
$yy = $yy-1;
echo $xx;
echo $yy;
echo"<meta http-equiv=refresh content=1;URL=update.php?x=$xx&&y=$yy>";
return;
}
jjj($a1,$b1);
function nnn($xx,$yy)
{
$xx= $xx-1;
$yy = $yy;
echo $xx;
echo $yy;
echo"<meta http-equiv=refresh content=1;URL=update.php?x=$xx&&y=$yy && t='green.gif' >";
return;
}
nnn($a1,$b1);
function mmm($xx,$yy)
{
$xx= $xx+1;
$yy = $yy;
echo $xx;
echo $yy;
echo"<meta http-equiv=refresh content=1;URL=update.php?x=$xx&&y=$yy>";
return;
}
mmm($a1,$b1);
function ooo($xx,$yy)
{
$xx= $xx;
$yy = $yy;
echo $xx;
echo $yy;
echo"<meta http-equiv=refresh content=1;URL=update.php?x=$xx&&y=$yy>";
return;
}
ooo($a1,$b1);
function rrr($xx,$yy)
{
$xx= $xx;
$yy = $yy+1;
echo $xx;
echo $yy;
echo"<meta http-equiv=refresh content=1;URL=update.php?x=$xx&&y=$yy>";
return;
}
rrr($a1,$b1);
?>
ส่วนของโค้ดupdate
Code (PHP)
<?php
include'include/connect.php';
$x=$_GET['x'];
$y=$_GET['y'];
echo $x;
echo $y;
$sql="update color set value='green.gif' where X='$x' and Y='$y'";
echo $sql;
$result=mysql_query($sql);
if($result)
{
echo"ปรับปรุงข้อมูลเรียบร้อย";
echo"<meta http-equiv='refresh'content='6;url=x.php'>";
}
else
{
echo"ไม่สามารถปรับปรับแก้ไขข้อมูลได้";
echo"<meta http-equiv='refresh'content='6;url=x.php'>";
}
mysql_close($con);
?>
คืออยากให้อัพเดทพร้อมกันทั้ง 9ฟังชั้น ลงฐานข้อมูลคับรับidเข้าแล้วใช้if วนก็ไม่ได้คับ คือมันจะอัพเดทเฉพาะฟังก์ชันแรกอ่ะคับ
Date :
2011-12-12 20:42:49
By :
ManUpat
Load balance : Server 03