0
我在這段代碼中遇到問題。我想當我按下保存按鈕,然後只有當前的數據由我保存在表中顯示,但我的問題是表中的所有數據顯示在網格中,如何擺脫這一點。如何在php中顯示datagrid中的單個數據
//php code
<?php
if(isset($_POST['save_button'])){
$qrydatabind='SELECT first_name,middle_name,last_name,father_name,mother_name,
number_of_dependents,dob,gender,identification_mark,marital_status,spouse_name,mobile_number,
email_id,adhar_id,pan_number,passport_number,tin_number,dl_number FROM USER_MASTER';
$results= mysql_query($qrydatabind) or die(mysql_error());
while($row = mysql_fetch_array($results)) {
echo
"
<table border='2' style= 'background-color: #84ed86; color: #761a9b; margin: 0 auto;' >
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tr>
<td>{$row['first_name']}</td>
<td>{$row['middle_name']}</td>
</tr> </table> ";
}}
?>
首先,你需要停止使用mysql_ *和去的東西像PDO或mysqli的作爲mysql_現在已經過時。 – Option
您可以編寫查詢來獲取上次保存的記錄。 –
感謝很多朋友,這是工作 – user3526020