|
|
|
พี่ครับช่วยดูโค๊ดผมทีครับ PHPรบกวนทีครับคือผมคิวรี้ข้อมูลมาจากฐานข้อมุลแล้วมาโชว์เป็นแบบ CheckBox นะครับแต่พอเวลากดเลือส่งค่าไปอีกฟอร์มมันไม่ยอมไปปอะครับช่วยทีครับ |
|
|
|
|
|
|
|
Code (php_mail1.php)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<script language="JavaScript">
function onSend()
{
if(confirm('Do you want to send mail ?')==true)
{
return true;
}
else
{
return false;
}
}
</script>
<form name="frmMain" action="php_mail2.php" method="post" OnSubmit="return onSend();">
<?
$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">Delete </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="chkSend[]" value="<?=$objResult["Email"];?>"></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
<input type="submit" name="btnDelete" value="Delete">
</form>
</body>
</html>
Code (php_mail2.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["chkSend"]);$i++)
{
if($_POST["chkSend"][$i] != "")
{
echo $_POST["chkSend"][$i]."<br>";
}
}
mysql_close($objConnect);
?>
</body>
</html>
|
|
|
|
|
Date :
2011-08-14 09:22:12 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ ป๋ม^^ ลองแกะตามดูก่อน ครับ
|
|
|
|
|
Date :
2011-08-14 11:51:18 |
By :
ศราวุธ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ครับตอนนี้ผมส่งค่าได้แล้วครับ...แต่มันติดตรงที่ว่าผมจะส่งค่าจาก textbox ไปด้วยต้องทำไงอะครับ --*
เนี้ยครับเวลาเราติ๊กเลือกช่องที่1 แล้วใส่ค่าเวลาเราส่งค่ามาค่าที่เราใส่มันต้องมาด้วยนะครับทำไงอะครับ
|
|
|
|
|
Date :
2011-08-14 12:27:38 |
By :
ศราวุธ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าแบบนี้คุณใช้เป็น Array ไม่ได้ครับ จะต้องกำหนดชื่อไปเลยครับ
|
|
|
|
|
Date :
2011-08-14 16:16:22 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ^^เด่วลองดูก่อนเอิ๊ก ๆ ๆ
|
|
|
|
|
Date :
2011-08-14 22:29:38 |
By :
ศราวุธ007 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|