Skip to content

Instantly share code, notes, and snippets.

@ghkevin20
Created January 24, 2019 00:15
<?php
//REQUIRE CONFIG FOR DB HANDLING
require 'config.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="../assets/images/favicon.ico">
<title>Add Edit Delete Simple PHP and MySQL | KSolutions PH</title>
</head>
<body>
<h1 >INFORMATION TABLE</h1>
<a href="add.php">Add New</a>
<br><br>
<table border="1" style="border-collapse: collapse;width: 600px;">
<thead style="background-color: teal;color: white;">
<tr>
<th>ID</th>
<th>NAME</th>
<th>EMAIL</th>
<th>ACTION</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment