| Current Path : /var/www/html/venkat/electiveaug22/ |
| Current File : /var/www/html/venkat/electiveaug22/facultycopy.php |
<?php
include("facultymain.php");
?>
<table width="600" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<form name="form1" method="post" action="facultycopysubmit.php">
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td colspan="3"><strong>View</strong></td>
</tr>
<tr>
<td width="250">Choose the Options:</td>
<td width="16">:</td>
<td width="394">
<?php
$quer1=mysql_query("select coursecode, subject from matrix group by subject") or die("Invalid Access !!!");
echo("<select name='subject1' id='subject1' />");
echo("<option value='#'>-Select-</option>");
echo("<option value=overall>Overall Statistics </option>");
while ($row = mysql_fetch_array( $quer1 )) {
$m1=$row['subject'];
$m2=$row['coursecode'];
echo("<option value=$m2>$m2 - $m1</option>");
}
echo("</select>");
echo("<center>");
?>
</tr>
<tr>
<td><input type="submit" value="Submit" target = "_blank" ></td>
</tr>
</table>
</form>
</table>