|
|
|
เพิ่มรูป การ get ค่าจาก database มาเก็บไว้ใน ตัวแปร (ขอความช่วยเหลืออีกนิด) |
|
|
|
|
|
|
|
Code (PHP)
<?
mysql_connect("127.0.0.1","root","11111") or die(mysql_error());
mysql_select_db("test");
$strSQL = " SELECT total FROM asset_currentasset_cash_in_wallet WHERE 1 ORDER BY no desc ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
$total = $objResult["total"]; // จะได้ record ล่าสุด
// input1 +
$input1 = 4000;
if($input1 > 0)
{
$newtotal = $total + $input1;
}
// input 2 -
$input2 = 0;
if($input2 > 0)
{
$newtotal = $total - $input2;
}
$strSQL = " insert into asset_currentasset_cash_in_wallet (no ... , input1 , input2 , total) values ('xx',...,'$input1','$input2','$total') ";
$objQuery = mysql_query($strSQL);
?>
|
|
|
|
|
Date :
2012-01-25 10:37:06 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วครับขอบคุณมากครับ
|
|
|
|
|
Date :
2012-01-25 10:47:05 |
By :
davcpe |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|