| Current Path : /var/www/html/venkat/ |
| Current File : /var/www/html/venkat/fstat.php |
<?php
include("db1.php");
include("session.php");
?>
<table width="600" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<form name="form1" method="post" action="fstatsubmit.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 course from feedback group by course") or die("Invalid Access !!!");
echo("<select name='subject1' id='subject1' />");
echo("<option value='#'>-Select-</option>");
while ($row = mysql_fetch_array( $quer1 )) {
$m1=$row['course'];
echo("<option value=$m1>$m1</option>");
}
echo("</select>");
echo("<center>");
?>
</tr>
<tr>
<td><br><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</table>