|
|
|
checkbox ครับ ต้องการเลือกพัสดุที่ต้องการยืม ต้องทำไงอ่า โดยที่แสดงชื่อพัสดุที่มีให้ยืมทั้งหมด แล้วให้สามารถเลือกว่าเราอยากยืมอารายบาง และจะเก็บลงฐานข้อมูลอย่างไร อ่ามีรูปด้วย |
|
|
|
|
|
|
|
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 :
2012-02-02 14:02:05 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆๆๆๆๆๆๆๆๆๆ อิอิใจดีอ่า
|
|
|
|
|
Date :
2012-02-02 15:00:06 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่วินครับแล้วถ้าจะให้มันไป update ลงในฐานข้อมูลทำไงอ่า
|
|
|
|
|
Date :
2012-02-08 13:02:10 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แค่เปลี่ยนจาก INSERT เป็น UPDATE ครับ ดัดแปลงไม่น่ายาก
|
|
|
|
|
Date :
2012-02-08 13:10:39 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่วินช่วยหน่อย
ตอนนี้มีสองตารางครับ
1-ตาราง k
2 ตาราง pas
แล้วในแต่ละตารางก็จะมี k1 เหมือนกัน ตอนแสดงอ่า เพียงแค่อยากเปรียบเทียบอ่า ถ้าข้อมูล k1 เหมือนกันไม่ให้แสดงข้อมูลนั้นอ่า
ช่วยทีอ่า
|
|
|
|
|
Date :
2012-02-08 13:15:13 |
By :
sunnyonto |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|