|
|
|
อยากจะ insert ข้อมูลจาก checkbox หลาย ๆอัน ลงในฟิวล์เดียวกันโดยคั่นด้วยเครื่องหมายคอมมา(,) |
|
|
|
|
|
|
|
Code (PHP)
$str = "พลังงานชุมชน,เกษตรพอเพียง,ผลิตภัณฑ์ชุมชน,เคล็ดวิชาความรู้";
$pieces = explode(",", $str);
for($i=0;$i<count($pieces);$i++)
{
$strSQL = " INSERT INTO table (Data) VALUES ('".$pieces[$i]."') ";
mysql_query($strSQL);
}
Go to : PHP explode()
|
|
|
|
|
Date :
2011-09-27 17:48:12 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากได้ประมาณนี้คับ พี่วิน
|
|
|
|
|
Date :
2011-09-27 20:15:21 |
By :
lengza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแบบนี้ดูนะ
ไฟล์ chkboxform.php
Code (PHP)
<?php
echo "<form action=chkboxadd.php method=post>";
echo "Name : <input type=text name=name><br>";
echo "<input type=checkbox name=ch1[] value=\"เกษตรกรรม\"> เกษตรกรรม<br>";
echo "<input type=checkbox name=ch1[] value=\"สัตว์เลี้ยง\"> สัตว์เลี้ยง<br>";
echo "<input type=checkbox name=ch1[] value=\"พลังงาน\"> พลังงาน<br>";
echo "<input type=checkbox name=ch1[] value=\"ยางพารา\"> ยางพารา<br>";
echo "<input type=submit>";
echo "</form>";
?>
ไฟล์ chkboxadd.php
Code (PHP)
<?php
$name=$_POST['name'];
$ch1=$_POST['ch1'];
$likes=implode(",",$ch1);
// field ชื่อ like ใน table นี่มันจะใช้ไม่ได้นะ เพราะเป็นคำสงวนของ SQL ให้เปลี่ยนเป็นคำอื่น
$sql="INSERT INTO table SET (name,likes) VALUES ('$name','$likes')";
$result=mysql_query($sql);
?>
|
ประวัติการแก้ไข 2011-09-28 06:06:03 2011-09-28 06:07:05
|
|
|
|
Date :
2011-09-28 06:05:15 |
By :
nimporn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|
|
|
|
|
Date :
2011-09-28 06:28:41 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณทุกข้อเสนอแนะคับ เดี่ยวจะลองดู
|
|
|
|
|
Date :
2011-09-28 09:16:38 |
By :
lengza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|