all of the code is
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>DVD Admin Page</title>
<script language="JavaScript">
<!--
function validate(form)
{
if (form.sub_name.value.length == 0)
{
alert("Please enter your first name."
form.sub_name.focus()
return false
}
}
//-->
</script>
</head>
<body>
<center><h3>DVD Admin Page</h3></center><br>
<form action="url" method="post" name="form">
<!-- start divider -->
<table border="0" bordercolor="#000000" width="100%" height="80%" cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<!-- start title -->
<table border="0" bordercolor="#000000" width="25%" height="2%" cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<strong>Submit DVD</strong>
</td>
</tr>
</table>
<!-- end title -->
<!-- start outer black border -->
<table border="1" bordercolor="#000000" width="25%" height="15%" cellpadding="0" cellspacing="0">
<tr>
<td>
<!--start form 1 -->
<table border="1" width="100%" height="100%" cellpadding="1" cellspacing="0">
<tr height="5%">
<td width="100%" align="center" colspan="2">
<strong>Main Information</strong>
</td>
</tr>
<tr height="5%">
<td width="35%">
<strong>Name:</strong>
</td>
<td width="65%" align="right">
<input type="text" id="sub_name" name="sub_name">
</td>
</tr>
<tr height="5%">
<td width="35%">
<strong>Catagory:</strong>
</td>
<td width="65%" align="right">
<input type="text" name="sub_catagory">
</td>
</tr>
<tr height="5%">
<td width="35%">
<strong>Year:</strong>
</td>
<td width="65%" align="right">
<input type="text" name="sub_year">
</td>
</tr>
<tr height="5%">
<td width="35%">
<strong>ISBN:</strong>
</td>
<td width="65%" align="right">
<input type="text" name="sub_isbn">
</td>
</tr>
<tr height="5%">
<td width="100%" align="center" colspan="2">
<strong>Extra Information</strong>
</td>
</tr>
<tr height="5%">
<td width="35%">
<strong>Studio:</strong>
</td>
<td width="65%" align="right">
<input type="text" name="sub_studio">
</td>
</tr>
<tr height="5%">
<td width="35%">
<strong>Director:</strong>
</td>
<td width="65%" align="right">
<input type="text" name="sub_director">
</td>
</tr>
<tr height="5%">
<td width="35%">
<strong>Actors:</strong>
</td>
<td width="65%" align="right">
<input type="text" name="sub_actor">
</td>
</tr>
</table>
<table border="0" width="100%" height="100%" cellpadding="1" cellspacing="0">
<tr>
<td align="center">
<input type="submit" value="Submit">
</td>
</tr>
</table>
<!-- end form -->
</td>
</tr>
</table>
<!-- end outer black border -->
</td>
<td align="center">
<!-- start title -->
<table border="0" bordercolor="#000000" width="25%" height="2%" cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<strong>Delete DVD</strong>
</td>
</tr>
</table>
<!-- end title -->
<!-- start outer black border -->
<table border="1" bordercolor="#000000" width="25%" height="15%" cellpadding="0" cellspacing="0">
<tr>
<td>
<!--start form 2 -->
<table border="1" width="100%" height="100%" cellpadding="1" cellspacing="0">
<tr height="5%">
<td width="100%" align="center" colspan="2">
<strong>Main Information</strong>
</td>
</tr>
<tr height="5%">
<td width="35%">
<strong>Name:</strong>
</td>
<td width="65%" align="right">
<input type="text" name="del_name">
</td>
</tr>
<tr height="5%">
<td width="35%">
<strong>ISBN:</strong>
</td>
<td width="65%" align="right">
<input type="text" name="del_isbn">
</td>
</tr>
</table>
<table border="0" width="100%" height="100%" cellpadding="1" cellspacing="0">
<tr>
<td align="center">
<input type="submit" value="Submit">
</td>
</tr>
</table>
<!-- end form -->
</td>
</tr>
</table>
<!-- end outer black border -->
</td>
</tr>
</table>
<center><font color="red">You must enter all Main Information in order to submit DVD into database</font></center>
<!-- end divider -->
</form>
</body>
</html>