I am not a coder so my knowledge is extremely limited.
I am trying to create a table that I can edit and delete entries from the, I found someone's code online and am trying to modify it for myself. My table knows there are x# of rows, but it will not display what the values are. the are of code error is:
require_once('db.php');
$result = $conn->prepare("SELECT * FROM bustracker ORDER BY id ASC");
$result->execute();
for($i=0; $row = $result->fetch(); $i++){
$id=$row['id']; // **********This is the row the error.log it telling me about This is line 37
?>
<tr>
<td style="text-align:center; word-break:break-all; width:300px;"> <?php echo $row ['id']; ?>
</td>
<td style="text-align:center; word-break:break-all; width:200px;"> <?php echo $row ['date']; ?>
</td>
<td style="text-align:center; word-break:break-all; width:200px;"> <?php echo $row ['line']; ?>
</td>
<td style="text-align:center; word-break:break-all; width:200px;"> <?php echo $row ['block']; ?>
</td>
<td style="text-align:center; word-break:break-all; width:450px;"> <?php echo $row ['start']; ?>
</td?
<td style="text-align:center; width:350px;">
<a href="edit.php<?php echo '?id='.$id; ?>" class="btn btn-info">Edit</a>
<a href="#delete<?php echo $id;?>" data-toggle="modal" class="btn btn-danger" >Delete </a>
</td>
and all the <?php echo $row are the other errors below
The error log says:
[04-Feb-2022 19:06:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/g88pa0itn9u7/bt.inokamanori.com/dataupdate1/index.php on line 37
[04-Feb-2022 19:06:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/g88pa0itn9u7/bt.inokamanori.com/dataupdate1/index.php on line 40
[04-Feb-2022 19:06:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/g88pa0itn9u7/bt.inokamanori.com/dataupdate1/index.php on line 41
[04-Feb-2022 19:06:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/g88pa0itn9u7/bt.inokamanori.com/dataupdate1/index.php on line 42
[04-Feb-2022 19:06:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/g88pa0itn9u7/bt.inokamanori.com/dataupdate1/index.php on line 43
[04-Feb-2022 19:06:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/g88pa0itn9u7/bt.inokamanori.com/dataupdate1/index.php on line 44
[04-Feb-2022 19:06:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/g88pa0itn9u7/bt.inokamanori.com/dataupdate1/index.php on line 56
[04-Feb-2022 19:06:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/g88pa0itn9u7/bt.inokamanori.com/dataupdate1/index.php on line 56
[04-Feb-2022 19:06:09 UTC] PHP Warning: Trying to access array offset on value of type bool in /home/g88pa0itn9u7/bt.inokamanori.com/dataupdate1/index.php on line 56
This is my site. https://bt.inokamanori.com/dataupdate1/index.php