|
|
|
ช่วยหน่อยอ่ะครับ เกี่ยวกับการ insert ด้วย check box |
|
|
|
|
|
|
|
ผมอยากให้เวลาเลือก check box จากตารางเก่าแล้ว ข้อมูลต่างๆ จะไป insert เข้าไปยังอีกตารางอ่ะครับ
มันติดปัญหาตรงที่ เวลาตรงผมติกถูกแล้ว est_id จากตารางเก่า เข้าไปยังตารางใหม่ ฟิวส์เดียวครับ ฟิวส์อื่นไม่ไปอ่ะครับขอคำปรึกษาหน่อยนะ
Sample8.php
<form name="form1" method="post" action="sample9.php">
<?
$host="localhost";
$username="root";
$pass_word="root";
$db="project";
$tb="establishment1";
mysql_connect( $host,$username,$pass_word) or die (" ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die(" เลือกฐานข้อมูลไม่ได้") ;
$sql="Select * From $tb";
$db_query=mysql_db_query($db,$sql);
$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
?>
เลือกรายการที่จะลบ
<table width="24%" border="1" cellspacing="1" cellpadding="1">
<tr>
<td width="24%"> รหัสสี </td>
<td width="52%"> รายละเอียดสี </td>
<td width="24%"> เลือก </td>
</tr>
</table>
<?
$a=0;
while($a < $num_rows)
{
$result = mysql_fetch_array($db_query);
$est_id=$result[est_id];
$est_name=$result[est_name];
$address=$result[address];
$manager=$result[manager];
$cont_with=$result[cont_with];
$telephone=$result[telephone];
$fax=$result[fax];
$stu_branch=$result[stu_branch];
$character=$result[character];
$position=$result[position];
$choose=$result[choose];
$welfare=$result[welfare];
$note=$result[note];
?>
<table width="100%" border="1" cellspacing="1" cellpadding="1">
<tr>
<td width="50%">
<?echo $est_id;?>
</td>
<td width="100%">
<?echo $est_name;?>
</td>
<td width="100%">
<?echo $address;?>
</td>
<td width="50%">
<?echo $telephone;?>
</td>
<td width="24%">
<input type="checkbox" name="array[]" value="<?echo "$est_id"; ?>">
</td>
</tr>
</table>
<?
$a++;
}
?>
<br>
<input type="submit" name="Submit" value=" เพิ่ม" >
Sample9.php
<?
$host="localhost";
$username="root";
$pass_word="root";
$db="project";
mysql_connect( $host,$username,$pass_word) or die (" ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die(" เลือกฐานข้อมูลไม่ได้") ;
for ($i=0;$i<count($array);$i++) {
$est_id = $array[$i];
$sql = "INSERT INTO establishment2
VALUES('$est_id','$est_name','$address','$manager','$cont_with', '$telephone','$fax','$stu_branch','$character','$position', '$choose','$welfare','$note')";
$db_query=mysql_db_query($db,$sql);
header('location:sample8.php');
}
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-02-11 08:35:56 |
By :
sanits |
View :
1409 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<form name="form1" method="post" action="sample9.php">
<?
$host="localhost";
$username="root";
$pass_word="root";
$db="project";
$tb="establishment1";
mysql_connect( $host,$username,$pass_word) or die (" ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die(" เลือกฐานข้อมูลไม่ได้") ;
$sql="Select * From $tb";
$db_query=mysql_db_query($db,$sql);
$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
?>
เลือกรายการที่จะลบ
<table width="24%" border="1" cellspacing="1" cellpadding="1">
<tr>
<td width="24%"> รหัสสี </td>
<td width="52%"> รายละเอียดสี </td>
<td width="24%"> เลือก </td>
</tr>
</table>
<?
$a=0;
while($a < $num_rows)
{
$result = mysql_fetch_array($db_query);
$est_id=$result[est_id];
$est_name=$result[est_name];
$address=$result[address];
$manager=$result[manager];
$cont_with=$result[cont_with];
$telephone=$result[telephone];
$fax=$result[fax];
$stu_branch=$result[stu_branch];
$character=$result[character];
$position=$result[position];
$choose=$result[choose];
$welfare=$result[welfare];
$note=$result[note];
?>
<table width="100%" border="1" cellspacing="1" cellpadding="1">
<tr>
<td width="50%">
<?echo $est_id;?>
</td>
<td width="100%">
<?echo $est_name;?>
</td>
<td width="100%">
<?echo $address;?>
</td>
<td width="50%">
<?echo $telephone;?>
</td>
<td width="24%">
<input type="checkbox" name="array[]" value="<?echo "$est_id"; ?>">
</td>
</tr>
</table>
<?
$a++;
}
?>
<br>
<input type="submit" name="Submit" value=" เพิ่ม" >
-------------------------------------------------
<?
$host="localhost";
$username="root";
$pass_word="root";
$db="project";
mysql_connect( $host,$username,$pass_word) or die (" ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die(" เลือกฐานข้อมูลไม่ได้") ;
for ($i=0;$i<count($array);$i++) {
$est_id = $array[$i];
$sql = "INSERT INTO establishment2
VALUES('$est_id','$est_name','$address','$manager','$cont_with', '$telephone','$fax','$stu_branch','$character','$position', '$choose','$welfare','$note')";
$db_query=mysql_db_query($db,$sql);
header('location:sample8.php');
}
?>
----------------------------------------------------
-------คำแนะนำน้อยๆลองคิดว่าจะใช้กับส่วนใดบ้างและแตกต่างกันอย่างไร ลองลำดับขั้นตอนการทำงานดูนะ-------
ตรงนี้น่าจะเพิ่มนะ
$tb="establishment1"; //ไม่รู้ว่ามีแค่ตารางเดียวหรอก
น่าจะมีด้วยนะ$tb="establishment2";//ที่แนะนำแบบนี้ตอน insert intoสามารถทำได้ทั้งสองตารางเลย แต่การลบเราเลือกที่จะลบข้อมูลในตารางใดก็ได้
ตอนcheckboxน่าจะมีหลายทางเลือกนะ
จากผู้น้อยมือใหม่อยากลองเหมือนกัน
|
|
|
|
|
Date :
2009-02-12 07:30:19 |
By :
kai9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO establishment2
VALUES('$est_id','$est_name','$address','$manager','$cont_with', '$telephone', '$fax','$stu_branch','$character','$position', '$choose','$welfare','$note')
$est_id = $array[$i]; มีค่าแล้ว
แล้ว อันอื่นไม่เห็นมีค่าเลย มีแต่ตัวแปรเปล่าๆ
|
|
|
|
|
Date :
2009-02-12 10:39:07 |
By :
ผ่านมา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับแต่ผมยังทำไม่ได้อ่ะ
|
|
|
|
|
Date :
2009-02-12 23:00:12 |
By :
sanits |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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:09:54 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|