我有一個基本的家譜網站都有每個人如下:顯示PHP數據
<a href="extract.php?id=John Dice" class="md-trigger" data-modal="modal-3" id ="Mohammed Ishaq Sharief">John Dice</a>
的extract.php
是一個基本的PHP腳本,從href
標籤採用id
並提取個人信息來自數據庫。現在php
腳本以普通的方式顯示數據(白色背景和純黑色文本)。如果你仔細看作爲在「`HREF」標記它,如下所示應該顯示其編碼一個模式:
<div class="md-modal md-effect-1" id="modal-3">
<div class="md-content">
<h3>Person Information</h3>
<div>
<ul>
<li><strong>Name:</strong> John Dice.</li>
<li><strong>DOB:</strong> 28th July 1995.</li>
<li><strong>BirthPlace:</strong> Chicago.</li>
<li><strong>Occupation:</strong> Student.</li>
<li><strong>About:</strong> Information.</li>
<li><strong>Contact:</strong> Contact stuff.</li>
</ul>
<button class="md-close">Close </button>
</div>
</div>
</div>
現在我已經值硬編碼,但我想我從php
提取到的數據在同一頁面上顯示在此模式中。我已經經歷了一些問題,並且知道一旦頁面被加載,一個模式就會被加載,但它是隱藏的,並且是通過Ajax和Javascript傳遞任何數據的唯一方法,我不知道這些數據。任何幫助,將不勝感激。
注意:這不是一個學術項目,我也不會上傳到服務器上。
那究竟是什麼呢? – HTTP
自我教育和是家庭記錄的數字化 – Beginner