forked from cwerner6/databases-final-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit.php
27 lines (24 loc) · 1.07 KB
/
edit.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
27
<!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="edit/editArtist.php" style="color:blue;font-weight:bold;">Edit Artists</a>     </td>
<td><a href="edit/editAlbum.php" style="color:blue;font-weight:bold;">Edit Albums</a>     </td>
<td><a href="edit/editRecordLabel.php" style="color:blue;font-weight:bold;">Edit Record Labels</a>     </td>
<td><a href="edit/editSong.php" style="color:blue;font-weight:bold;">Edit Songs</a>     </td>
</tr>
</table>
<?php
require("dbconnect.php");
require("tableshow.php");
show_artists($conn);
?>
</div>
</body>
</html>