我需要幫助顯示從數據庫中選擇數據值到html表中的特定位置。 我已經做出了顯示它的代碼,但它會在html表中的索引0中顯示數據。如何將數據庫值顯示到html表格的特定索引中?
任何人都知道如何使數據將顯示在html表上的索引1? 我試圖改變索引,但它未能顯示它。 這裏我的代碼:
$(document).ready(function(){
$.ajax({
type: "Post",
url: "../php/bkk/bkk_isel.php",
success: function(data){
var list = JSON.parse(data);
for(var i = 0; i < list.length; i++){
$('#mat').val((list[i]['material']));
$('#lok').val((list[i]['lokasi']));
$('#kpl').val((list[i]['kapal']));
$('#po_numb').val((list[i]['po']));
var tr = "<tr>";
tr += "<td>"+list[i]['tanggal']+"</td>";
tr += "<td>"+list[i]['no_pol']+"</td>";
tr += "<td>"+list[i]['netto']+"</td>";
tr += "</tr>";
$("#table_s tbody").append(tr);
}
return false;
}
});
});
這是{}數據,我使用。我使用PHP函數的數據
<?php
$con=mysqli_connect("localhost","root","","silo");
if (!$con) {
die('Could not connect: ' . mysql_error());
}
// Data for Titik1
$query = mysqli_query($con,"SELECT * FROM temp2");
$rows = array();
while($tmp= mysqli_fetch_array($query)) {
$rows[] = $tmp;
}
echo json_encode($rows);
mysqli_close($con);
?>
什麼樣的價值是接收變量「數據」。你可以發佈一個樣本 –
我已經編輯我的代碼。我給我的代碼從我的代碼中檢索{data} –