我有这个代码从数据库中选择数据。我想介绍一个名为“收据”的最后一栏,但是,这将是一个文本区域列,用户可以键入与每条记录对齐的收据编号并提交保存。我的挑战是如何包含表单,以便文本框与从数据库中提取的每个记录对齐。任何人?由于
这样How to Make input text field inside table cell in JQuery DataTables
$sql = "SELECT * FROM customer";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
echo "<table><tr><th>ID</th><th>Name</th><th>Amount</th><th>TransactionID</th><th>Mobile Number</th><th>Time Paid</th><th>Account</th></tr>";
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<tr><td>" . $row["id"]. "</td><td>" . $row["name"]. "</td><td>" . $row["amount"]. "</td><td>" . $row["trans_id"]. "</td><td>" . $row["msisdn"]. "</td><td>" . $row["time_paid"]. "</td><td>" . $row["status"]. "</td></tr>";
}
echo "</table>";
} else {
echo "0 results";
}
答案 0 :(得分:1)
截至发布的内容,您没有表格格式。将其添加到PHP文件的顶部。
Route::group(array('before' => ['auth' ,'temp-actions']), function(){
Route::get('doc_search',
array(
'as' => 'search',
'uses' => 'App\Modules\Core\Controllers\SearchController@index'
)
);
}
});
然后,添加您的while语句,然后使用
关闭它echo "<h2 class=\"text-left\"My Table</h2><hr/>
<table class=\"table\">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
</tr>
</thead>
<tbody>";