Home File in PHP Get link Facebook X Pinterest Email Other Apps July 01, 2024 <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"></head><body> <h1>Hello from home.php</h1></body></html> Get link Facebook X Pinterest Email Other Apps Comments
Index File in PHP July 01, 2024 <?php include ( "header.php" ); include ( "dbconn.php" ); ? > < div class = "box1" > < h2 > ALL STUDENTS </ h2 > < button class = "btn btn-primary" data-toggle = "modal" data-target = "#exampleModal" > ADD STUDENTS </ button > </ div > < table class = "table table-hover table-bordered table-striped" > < thead > < tr > < th > ID </ th > < th > First_Name </ th > < th > Last_Name </ th > < th > Age </ th > < th > Update </ th > < th > Delete </ th > </ tr > </ thead > ... Read more
Comments
Post a Comment