Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > ช่วยหน่อยอ่ะครับ เกี่ยวกับการ insert ด้วย check box



 

ช่วยหน่อยอ่ะครับ เกี่ยวกับการ insert ด้วย check box

 



Topic : 024664



โพสกระทู้ ( 68 )
บทความ ( 0 )



สถานะออฟไลน์




ผมอยากให้เวลาเลือก 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 : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-02-11 08:35:56 By : sanits View : 1409 Reply : 5
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

PHP Multiple Checkbox






Date : 2009-02-12 06:59:42 By : webmaster
 


 

No. 2



โพสกระทู้ ( 146 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


<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
 

 

No. 3

Guest


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 : ผ่านมา
 


 

No. 4



โพสกระทู้ ( 68 )
บทความ ( 0 )



สถานะออฟไลน์


ขอบคุณครับแต่ผมยังทำไม่ได้อ่ะ
Date : 2009-02-12 23:00:12 By : sanits
 


 

No. 5

Guest


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
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ช่วยหน่อยอ่ะครับ เกี่ยวกับการ insert ด้วย check box
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่