วันพุธที่ 22 ธันวาคม พ.ศ. 2553

update multiple record


<?php

if ($_SERVER['REQUEST_METHOD'] == 'POST'){
echo 'doraemon,nobita,pokemon,id<br','>';
foreach((array)$_POST['data'] as $pk=>$d){
echo $d['doraemon'],',',$d['nobita'],',',$d['pokemon'],',',$pk,'<br','>';
//เอาข้อมูลนี้ไปสร้างคำสั่ง update ...
}
die('save');
}

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>update multiple record</title>
</head>

<body>

<form id="form1" name="form1" method="post" action="">
<?php foreach(range(1,2) as $i):?>
<input type="text" name="data[<?php echo $i;?>][doraemon]" />
<input type="text" name="data[<?php echo $i;?>][nobita]" />
<input type="text" name="data[<?php echo $i;?>][pokemon]" />
<?php echo '<br','>'; endforeach;?>
<input type="submit" name="button" id="button" value="Submit" />
</form>

</body>
</html>

ไม่มีความคิดเห็น:

แสดงความคิดเห็น