รายละเอียดของการตอบ ::
ขอบคุณมากเลยครับ ถ้าเขียนแบบ$_POST['a'] ผมใช้เป็นครับ ที่ผมไม่ใช้$_POSTเพราะไม่อยากให้หน้าจอกระพริบครับ
ส่วนตอนนี้ที่ผมติดปัญหาอยู่ก็คือ จะส่งค่าTextBoxไปwhereอย่างไรดีครับ เหตุการณ์คือ กดลิงค์แล้วส่งค่าtextboxไปยังmodalครับ
ขอบคุณมากครับ
<body>
<input type="text" id="a" name="a">
<a href="#" onclick="confirm()">คลิกที่นี่</a>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<span class="close">×</span>
<!--ดึงข้อมูลมาโชว์-->
<table>
<thead>
<tr>
<th>รหัส</th>
<th>ชื่อ</th>
</tr>
</thead>
<?
include 'ConnectDB.php';
$sql = "SELECT * FROM customer where id=..........ค่าจากTextBox.............";
$dbquery = mysql_db_query($dbname, $sql);
while($result = mysql_fetch_array($dbquery)) {
?>
<!--สิ้นสุดดึงข้อมูล-->
</div>
</div>
</div>
<!-- The Modal -->
<script>
function confirm()
{
var modal = document.getElementById('myModal');
var btn = document.getElementById("myBtn");
var span = document.getElementsByClassName("close")[0];
modal.style.display = "block";
span.onclick = function() {
modal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
}
</script>
</body>