问题描述
我有一个使用while循环创建的按钮.因此while循环会为mysql表中的每一行创建一个表行.
I have a button that is created using a while loop. so the while loop creates a table row for each row in a mysql table.
对于该按钮,我有一行代码,该代码针对表的每一行再次创建,并且每个按钮基于该记录的id
具有不同的值.
I have one line of code for the button which is created again for each row of the table and each button has a different value based on the id
for that record.
$order .= '<td><a href="#myModal" class="btn btn-default btn-small" id="custId" data-toggle="modal" data-id="'.$row['ID'].'">Edit</a></td>';
问题是我想使用该$row['ID']
并以模式查看它,这样我就可以使用mysqli查询检索具有相同ID的记录.
The problem is that I want to use that $row['ID']
and view it in a modal so I can retrieve the record with the same ID using mysqli query.
这是模态代码.
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Edit Data</h4>
</div>
<div class="modal-body">
i want to save the id in a variable here so i can use it in a php script for this modal
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
推荐答案
如果我正确,你会发现.
If, I got you correct.
具有$row['ID']
$order .= '<td><a href="#myModal" class="btn btn-default btn-small" id="custId" data-toggle="modal" data-id="'.$row['ID'].'">Edit</a></td>';
Bootstrap Modal事件以使用Ajax方法获取$row['ID']
值
Bootstrap Modal event to fetch the $row['ID']
value with Ajax method
$(document).ready(function(){
$('#myModal').on('show.bs.modal', function (e) {
var rowid = $(e.relatedTarget).data('id');
$.ajax({
type : 'post',
url : 'fetch_record.php', //Here you will fetch records
data : 'rowid='+ rowid, //Pass $id
success : function(data){
$('.fetched-data').html(data);//Show fetched data from database
}
});
});
});
模式HTML
<div class="modal fade" id="myModal" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Edit Data</h4>
</div>
<div class="modal-body">
<div class="fetched-data"></div> //Here Will show the Data
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
最后创建fetch_record.php
,检索记录并以模态显示
Last Create fetch_record.php
, retrieve the record and show in modal
<?php
//Include database connection
if($_POST['rowid']) {
$id = $_POST['rowid']; //escape string
// Run the Query
// Fetch Records
// Echo the data you want to show in modal
}
?>
这篇关于将PHP变量传递给引导模态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!