|
|
|
select ข้อมูลมาโชว์เป็น Checkbox แล้ว เอาค่า insert ลงฐานข้อมูล |
|
|
|
|
|
|
|
งง งง นะ
|
|
|
|
|
Date :
19 มิ.ย. 2551 15:20:01 |
By :
งง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่มเติมค่ะ คือว่าเราทำการ Select ข้อมูล แล้วให้โปรแกรม วนลูปเอาค่าที่ได้ เช่น id เก็บไว้ใน array เช่น
id[1]
id[2]
id[3]
ตามที่ได้มีการเช็คถูกในตัว Checkbox ที่ติดปัญหาคือ ไม่ทราบว่าจะเขียนให้เอาค่า id ที่เก็บเป็น Array นั้น
วนลูปเก็บค่าลงในฐานข้อมูลได้อย่างไรค่ะ
ช่วยแนะนำหน่อยนะคะ เพิ่งหัดเขียนค่ะ
|
|
|
|
|
Date :
20 มิ.ย. 2551 15:44:23 |
By :
ณชา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code ค่ะ
<?
$sqlselectpartner="SELECT cust_id,cust_name,cust_code FROM EWM_Cust WHERE cust_type='P' and status='A' order by cust_name";
$queryselectpartner =odbc_exec($conn,$sqlselectpartner) or die("Can't Q Data");
$i=0;
while($resultpartner= odbc_fetch_array($queryselectpartner))
{
$partner=$resultpartner['cust_id'];
$partner_name = $resultpartner['cust_name'];
echo "<input type='checkbox' name='chkpartner[]' value='$partner' >$partner_name <br>";
echo "<input name='Temp[]' type='hidden' value='$partner' >";
$i ++;
}
?>
ข้อมูลจากที่เรา Select จะแสดงออกมาให้เราเลือกผ่านการ Checkbox ทั้งหมด แต่ติดปัญหาว่าเราจะนำข้อมูล $partner วนลูปเอาเข้าฐานข้อมูลได้อย่างไร ช่วยแนะนำหน่อยนะคะ
ขอบคุณค่ะ
|
|
|
|
|
Date :
24 มิ.ย. 2551 12:15:07 |
By :
ณชา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (form.php)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<script language="JavaScript">
function onSave()
{
if(confirm('Do you want to save ?')==true)
{
return true;
}
else
{
return false;
}
}
</script>
<form name="frmMain" action="save.php" method="post" OnSubmit="return onSave();">
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
<th width="30"> <div align="center">Select </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
<td align="center"><input type="checkbox" name="chkEmail[]" value="<?=$objResult["Email"];?>"></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
<input type="submit" name="btnSave" value="Save">
</form>
</body>
</html>
Code (save.php)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
for($i=0;$i<count($_POST["chkEmail"]);$i++)
{
if($_POST["chkEmail"][$i] != "")
{
$strSQL = "INSERT INTO table_name (Mail) VALUES ('".$_POST["chkEmail"][$i]."')";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
}
}
echo "Record Insert.";
mysql_close($objConnect);
?>
</body>
</html>
Go to : PHP Multiple Checkbox
|
|
|
|
|
Date :
2011-08-11 22:14:43 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|