-1
ここで私は配列を持っています、配列の値をテーブル形式で表示したい、誰かが手段を知っているならば、私はPHP 7.1の初心者です。回答を得ることができません。配列に基づいてテーブルに結果を表示する方法
print_r($ companyResponse);
Array
(
[status] => success
[message] => Total 3 record(s) found.
[total_record] => 3
[data] => Array
(
[0] => Array
(
[companyId] => 3
[companyName] => TCS
[noOfDivision] => 7
[companyAddress] => JP nagar
[companyStatus] => 0
)
[1] => Array
(
[companyId] => 2
[companyName] => IBM
[noOfDivision] => 5
[companyAddress] => Domlur
[companyStatus] => 0
)
[2] => Array
(
[companyId] => 1
[companyName] => Quikr
[noOfDivision] => 10
[companyAddress] => Manyatha Tech Park,Bangalore
[companyStatus] => 0
)
)
)
表
<table id="demo-dt-basic" class="table table-striped table-bordered" cellspacing="0" width="100%" style="">
<thead>
<tr>
<th>Company</th>
<th>No of Division</th>
<th >Company Address</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<?php
$companyResponse = GetResponse(API_URL.'getCompanies');
?>
<td>1</td>
<td>5</td>
<td>TCS</td>
<td>
<button class="btn btn-success actionbtn"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> Edit</button>
<button class="btn btn-danger actionbtn" data-toggle="modal" data-target="#DeleteModal"><i class="fa fa-trash-o" aria-hidden="true"></i> Delete</button>
</td>
</tr>
</tbody>
</table>
OK感謝を試してみてください、私が得ました –