unexpected end of file in html code

104 Views Asked by At

this is my senaraiperalatanstaf.php.. i added the php code in between but after that it says that i have parse error that is unexpected end of file. i have tried searching but i couldn't find the error. Please help. Thanks a lot. this is my code. The thing is my overall code line is 98 but the error it says Parse error: syntax error, unexpected end of file in C:\xampp\htdocs\beachresort\senaraiperalatanstaf.php on line 100. i dont get it.

<!DOCTYPE html>

<html>
<head>
    <meta charset="UTF-8">
    <title>SENARAI PERALATAN - PENDAFTARAN PERALATAN TD</title>
    <link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
    <div id="background">
        <div id="page">
            <div id="header">
                <div id="logo">
                    <a href="index.html"><img src="images/logooo.jpg" alt="LOGO" height="80" width="80"></a>
                </div>
                <ul id="drop-nav">
                    <ul>
                         <li><a href="STAF UTAMA.html">Utama</a></li>
                         <li><a href="PENDAFTARAN STAF.html">Pendaftaran Staf</a>
                         <li><a href="SENARAI PERALATAN STAF.html">Senarai Peralatan</a>
                         <li><a href="KELUAR STAF.html">Keluar</a>

                    </ul>
                    </ul>
            </div>
            <div id="contents">
                <div class="box">
                    <div>
                        <div class="body">
                            <h3>Senarai Peralatan yang telah didaftarkan : </h3>
                            <p>
                                 <h5><center><p><a href="#">HARTA MODAL</a></p></center></h5>

                                 <p>&#10140; <a href="#">Jentera Berat</a></p>                               
                                 <p> &#10140; <a href="#">Kenderaan</a></p>                              
                                 <p>&#10140; <a href="#">Peralatan</a></p>                              
                                 <p>&#10140; <a href="#">Perubatan</a></p>                               
                                 <p>&#10140; <a href="#">Penyiaran</a></p>
                                 <p>&#10140;<a href="#">Dapur</a></p>
                                 <br>
                                 </p>

                                 <h5><center><p><a href="#">INVENTORI</a></p></center></h5>

                                 <p>
                                 <table border="1" style="width:100%">
                                     <tr>
                                     <td style="width:85px"><center>NO.SIRI</center></td>
                                     <td style="width:85px"><center>KATEGORI</center></td>
                                     <td style="width:85px"><center>SUB KATEGORI</center></td>
                                     <td style="width:85px"><center>HARGA</center></td>
                                     <td style="width:85px"><center>KUANTITI</center></td>
                                     <td style="width:85px"><center>PILIHAN</center></td>

                                     </tr>
                                </table>
                                </p>

                                <?php
                                $sql = "SELECT * FROM `kew.pa-2` ORDER BY no_siri";
                                $no = 1;
                                foreach ($dbh->query($sql) as $data) :
                                ?>

                                     <tr>
                                         <td style="width:85px"><center><?php echo $data['no_siri'] ?></center></td>
                                         <td style="width:85px"><center><?php echo $data['kategori'] ?></center></td>
                                         <td style="width:85px"><center><?php echo $data['sub_kategori'] ?></center></td>
                                         <td style="width:85px"><center><?php echo $data['harga'] ?></center></td>
                                         <td style="width:85px"><center><?php echo $data['kuantiti'] ?></center></td>
                                         <td align="center" style="width: 116px">
                                     </tr>

                                             <a href="senaraiperalatanstaf.php?no_siri=<?php echo $data['no_siri'] ?>"><img alt="edit" src="edit.png" /><a>
                                             &nbsp;&nbsp;
                                             <a href="senaraiperalatanstaf.php?no_siri=<?php echo $data['no_siri'] ?>"><img alt="delete" src="delete.png" /><a>


                                 <p>&#10152; <a href="#">Perabot</a></p>                                 
                                 <p>&#10152; <a href="#">Hiasan</a></p>                              
                                 <p>&#10152; <a href="#">Langsir</a></p>                                
                                 <p>&#10152; <a href="#">Pinggan Mangguk</a></p>                                 
                                 <p>&#10152; <a href="#">Sukan</a></p>


                        </div>
                    </div>
                </div>
            </div>
        </div>
     </div>

    </body>
</html>
1

There are 1 best solutions below

0
On BEST ANSWER

You don't have an endforeach to match your foreach. This should probably go after your </tr>