|
|
|
อยากให้ตัวแปรที่คำนวณแล้วได้ค่าผลลัพธ์ ไปเก็บในฐานข้อมูล (มีโค๊ด มีรูป ฮ่ะ)ช่วยหน่อยครับ |
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2010-11-05 19:29:54 |
By :
Chupong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
php mysql update
ตัวอย่าง
Code (PHP)
<?
include"connect.php";
$result=mysql_query("select * from 8l limit 19230,1000000");
while($a=mysql_fetch_array($result)){
$vocab=$a['vocab'];
$b=array(substr($vocab,0,1),substr($vocab,1,1),substr($vocab,2,1),substr($vocab,3,1),substr($vocab,4,1),substr($vocab,5,1),substr($vocab,6,1),substr($vocab,7,1));
sort($b);
$b=implode($b);
$result2=mysql_query("UPDATE `crossword`.`8l` SET `sort` = '$b' WHERE CONVERT( `8l`.`vocab` USING utf8 ) = '$vocab'");
print"$vocab == > $b<br>";
}
?>
ถูกมั้ยอะ
|
|
|
|
|
Date :
2010-11-05 23:24:38 |
By :
monotakari |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|