Пытаюсь поместить свои данные json в HTML-таблицы.
я пытался прочитать свои данные json из файла json и отобразить их в своем приложении с помощью php. Хотя мне удалось отобразить свои данные json в моем приложении, но я хочу отобразить их в таблицах, чтобы они выглядели красиво.
Что я уже пробовал:
вот код блока
<table class="table" id="allM"> <thead class="thead-light"> <tr> <th scope="col">ID</th> <th scope="col">PhoneNumber</th> <th scope="col">Body</th> <th scope="col">Date</th> <th scope="col">IsRead</th> </tr> </thead> <tbody> </tbody> </table>
вот блок кода php
<?php $jsondata = file_get_contents("json_response.json"); $json = json_decode($jsondata,true); $output = "<ul>"; foreach($json["Messages"] as $messages) { $output .= "".$messages["id"].""; $output .= "<li>".$messages["phonenumber"]."</li>"; $output .= "<li>".$messages["body"]."</li>"; $output .= "<li>".$messages["M_date"]."</li>"; $output .= "<li>".$messages["isRead"]."</li> <br/>"; } $output .= "</ul>"; echo $output; ?>
любые предложения были бы великолепны!