웹 개발에서는 링크에서 모달 창으로 데이터를 전달해야 하는 경우가 많습니다. Bootstrap에서 $_GET 변수를 사용하여 이를 달성하려면 다음 단계를 따르십시오.
모달 호출 버튼:
<td>
모달 HTML:
통화 버튼이 있는 페이지(가급적 하단)의 while 루프 외부에 다음 모달 HTML을 배치합니다.
<div class="modal fade">
file.php:
<?php // Include database connection here $Id = $_GET["id"]; // Escape the string if you like // Run the query ?> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h4 class="modal-title"><center>Heading</center></h4> </div> <div class="modal-body"> // Show records fetched from database against $Id </div> <div class="modal-footer"> <button type="button" class="btn btn-default">Submit</button> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> </div>
모달 호출 버튼(데이터 속성 포함):
<td>
모달 HTML:
<div class="modal fade">
JavaScript(jQuery 포함):
// jQuery library comes first // Bootstrap library $(document).ready(function() { $('#editBox').on('show.bs.modal', function(e) { var id = $(e.relatedTarget).data('id'); // Fetch id from modal trigger button $.ajax({ type: 'post', url: 'file.php', // Here you will fetch records data: 'post_id=' + id, // Pass $id success: function(data) { $('.form-data').html(data); // Show fetched data from database } }); }); });
file.php:
<?php // Include database connection here if ($_POST['id']) { $id = $_POST['id']; // Run the query // Fetch records // Echo the data you want to show in the modal } ?>
이러한 기술을 사용하면 $_GET 변수를 링크에서 부트스트랩 모달로 효과적으로 전달할 수 있으므로 웹 애플리케이션에 동적 콘텐츠를 표시할 수 있습니다.
위 내용은 $_GET 변수를 링크에서 Bootstrap 모달로 어떻게 전달할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!