[請益] update 資料問題

作者: Relent (遺憾)   2016-07-14 15:22:16
我在php中做更新紀錄的動作
根據print出來的sql語法如下
update `tableS` set `history`='[{"time":"2016-07-14
18:24:22","count":0,"link":"http://aaa.bbb.cc"}]' where account='110101'
只是我的資料表history欄位裡面的資料,卻變成了這樣
[{"time":"2016-07-14
18:24:22","count":0,"link":"http://aaa.bbb.cc"},
{"time":"2016-07-14
18:24:22","count":0,"link":"http://aaa.bbb.cc"},
{"time":"2016-07-14
18:24:22","count":0,"link":"http://aaa.bbb.cc"},
{"time":"2016-07-14
18:24:22","count":0,"link":"http://aaa.bbb.cc"}]
多出了3筆同樣的紀錄
想請問一下各位大大這種狀況是因為什麼呢
程式碼如下,
[code]
$count=0;
$bitStr="1101010101111010";
while($count<30 && strlen($bitStr)>0){
$percent=0.1;
$obj=new stdClass();
$obj->time=$checkDate;
$obj->count=$count*$percent;
$obj->link=$url;
$arr=array();
array_push($arr,$obj);
$str=json_encode($arr);
$sql="update tableS set history='".$str."' where account='".$bitStr."'";
echo $sql;
mysql_query($sql);
$count++;
$bitStr=substr($bitStr,0,-1);
}
[/code]
作者: ns1234 (FAR)   2016-07-14 16:35:00
escape?
作者: shadowjohn (轉角遇到愛)   2016-07-14 20:57:00
完了…等一下會有二個大師兄上來唸你
作者: Relent (遺憾)   2016-07-15 01:49:00
呃 請問S大是有看出哪裡不妥嗎 是我程式的寫法不好嗎這個問題我試了一天,發現用IE不會出現這樣的狀況,chrome會,應該要如何避免呢?
作者: wilson200106 (種子種子)   2016-07-15 09:52:00
先試試unset掉看看.......?
作者: gname ((′口‵)↗︴<><...<><)   2016-07-15 09:58:00
你要不要reset chrome一下,我跑沒問題啊...
作者: locklose (允)   2016-07-15 11:55:00
PDO表示:
作者: shadowjohn (轉角遇到愛)   2016-07-15 13:27:00
先不管瀏覽器…這樣切切切處理的用意是什麼呢?
作者: Relent (遺憾)   2016-07-19 19:15:00
呃 那個是本來資料庫的規劃,一個二元樹的編號,一層層的往上找

Links booklink

Contact Us: admin [ a t ] ucptt.com