Server IP : 172.16.15.8 / Your IP : 3.15.225.177 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{ float:left; width:65%; overflow:hidden; } #rightmain{ float:left; width:35%; overflow:hidden; } </style> <div id="leftmain"> <form action="addwork.php" method="post"> <H3>Add Assignment</H3> Student:<input type="text" name="student"> Class:<input type="text" name="class"> <BR>Assignment:<input type="text" name="assignment"> Due Date:<input type="text" name="date"> <BR> <input type="Submit"> <INPUT type=reset value=Clear> </form> <HR> <form action="modwork.php" method="post"> <H3>Change Assignment Date</H3> Class:<input type="text" name="class"> <BR>Assignment:<input type="text" name="assignment"> Due Date:<input type="text" name="date"> <BR> <input type="Submit"> <INPUT type=reset value=Clear> </form> <HR> <form action="deletework.php" method="post"> <H3>Remove Assignment</H3> Class:<input type="text" name="class"> Remove Assignment:<input type="text" name="assignment"> <BR> <input type="Submit"> <INPUT type=reset value=Clear> </form> </div> <div id="rightmain"> </html> <?php $sql = mysql_query("SELECT * FROM workdue ORDER BY Class ASC"); $fields_num = mysql_num_fields($sql); echo "<h1>Grades</h1>"; echo "<table border ='1'><tr>"; for($i=0; $i<$fields_num; $i++) { $field = mysql_fetch_field($sql); echo "<td>{$field->name}</td>"; } echo "</tr>\n"; while($row = mysql_fetch_row($sql)) { echo "<tr>"; foreach($row as $cell) echo "<td>$cell</td>"; echo "</tr>\n"; } ?> <html> </div> </html>