I was wondering how i would position my menus so that it all fits into the screen rather than having to scroll down to use those menus when there's a huge space on the right-hand side.
There's four menus all up and i want the last menu to be position on the top right side so i don't need to scroll down when i use it.
<html>
<head> EMPLOYEE DATABASE head>
<body><form action="agent2.php" method ="post">
<p>
<frame>
<head> MENU 1: EMPLOYEE NUMBER SEARCH <head>
<p>
<td>Empno:</td>
<td><input type="text" name="empno" size="15" maxlength="80"></td>
<input type ="submit" name= "submit" value="FULL SEARCH" />
<input type ="submit" name= "submit" value="SUB-SEARCH" />
<br/>
<input type="checkbox" name="dept" "CHECKED"> department
<br/>
<br/>
<head> MENU 2: EMPLOYEE NAME SEARCH <head>
<p>
<td>Ename:</td>
<td><input type="text" name="ename" size="15" maxlength="80"></td>
<input type="checkbox" name="dept3" "CHECKED"> department
<br/>
<p>
<td><td><input type= submit name="submit" value="Submit Ename" >
<p>
<head> MENU 3: SALARY SEARCH <head>
<p>
<td> Min. <input type="text" name="min_sal" size="1.5" maxlength="4"></td>
<td> Max. <input type="text" name="max_sal" size="1.5" maxlength="4"></td>
<input type="checkbox" name="dept2" "CHECKED"> department
<br/>
<br>
<td><td><input type= submit name="submit" value="Submit Salary" >
<br>
<p>
<p>
<input type= submit name="submit" value="Display All Employees" >
<input type= submit name="submit" value="Display All Departments" >
<p>
<frame>
/** i want this 'UPDATE DATABASE MENU into the top right side **/
<head> ******** MENU 4: UPDATE DATABASE ********** <head>
<body><form action="update2.php" method ="post">
<p>
<td>Empno:</td>
<td><input type="text" name="empno" size="15" maxlength="80"></td>
<p>
<head> UPDATE EMPLOYEE DETAILS <head>
<p>
<td>Update ename:</td>
<td><input type="text" name="ename" size="15" maxlength="80"></td>
<p>
<td>Update job:</td>
<td><input type="text" name="job" size="15" maxlength="80"></td>
<p>
<td>Update sal:</td>
<td><input type="text" name="sal" size="3.5" maxlength="6"></td>
<p>
<input type ="submit" name= "submit" value="UPDATE" />
<frame>
</form></body>
</html>
thank-you