forked from cwerner6/databases-final-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·26 lines (23 loc) · 950 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<body >
<div style="min-height:900px; background-color: lightblue;" align="center">
<table>
<tr><td><image src="Picture.png" width="150" height="100"></td></tr>
</table>
<br><br><br><br>
<table>
<tr>
<td><a href="insert.php" style="color:blue;font-weight:bold;">Insert </a>     </td>
<td><a href="edit.php" style="color:blue;font-weight:bold;">Edit Information</a>     </td>
<td><a href="display.php" style="color:blue;font-weight:bold;">Display</a>     </td>
</tr>
</table>
<?php
require("dbconnect.php");
require("tableshow.php");
show_artists($conn);
?>
</div>
</body>
</html>