Server IP : 172.16.15.8 / Your IP : 3.129.247.250 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/jlcrouch/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); ?> <?php include_once("db.php"); $uname = $_SESSION['user']; if(empty($uname)) echo "<br /><a href='signinform.php'>Please Login</a>"; ?> <html> <style> #leftmain{ background-color:purple; float:left; width:75%; overflow:hidden; } #rightmain{ background-color:red; float:left; width:25%; overflow:hidden; } </style> <div id="leftmain"> <form action="teachergrades.php" method="post"> <H3>Add a Grade</H3> Student:<input type="text" name="student"> Class:<input type="text" name="class"> <BR>Assignment:<input type="text" name="assignment"> Grade:<input type="text" name="grade"> <BR> <input type="Submit"> <INPUT type=reset value=Clear> </form> <HR> <form action="modgrades.php" method="post"> <H3>Change a Grade</H3> Student:<input type="text" name="student"> Class:<input type="text" name="class"> <BR>Assignment:<input type="text" name="assignment"> New Grade:<input type="text" name="grade"> <BR> <input type="Submit"> <INPUT type=reset value=Clear> </form> <HR> <form action="deletegrades.php" method="post"> <H3>Remove an Assignment</H3> Student:<input type="text" name="student"> Class:<input type="text" name="class"> <BR>Remove Assignment:<input type="text" name="assignment"> <BR> <input type="Submit"> <INPUT type=reset value=Clear> </form> </div> <div id="rightmain"> alksjdflkajsdlkf </div> <html>