[Solved] I want to put text file to table in php


Do something like this.

if you need to read a text file then use file_get_contents() function.

<?php
$fh     =   file_get_contents('text.txt');
$table  =   json_decode($fh);
?>
<table>
    <thead>
        <tr>
            <th>Head 1</th>
            <th>Head 2</th>
        </tr>
    </thead>
    <tbody>
        <?php foreach($table as $val){ ?>
        <tr>
            <td><?php echo $val->title; ?></td>
            <td><?php echo $val->Book[0]; ?></td>

        </tr>
        <?php } ?>
    </tbody>
</table>

NOTE Set your table head as per your need.

3

solved I want to put text file to table in php