| Current Path : /var/www/html/venkat/electiveaug22/ |
| Current File : /var/www/html/venkat/electiveaug22/facultyupload.php |
<?php
include("facultymain.php");
?>
<html>
<table width="600" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<form name="form1" method="post" action="facultyuploadstore.php" enctype = "multipart/form-data">
<tr>
<td colspan="3"><strong>Please Choose Your Option</strong></td>
</tr>
<tr>
<td width="250">Choose the Discipline</td>
<td width="16">:</td>
<td width="394">
<?php
echo("<select name='subject' id='subject'/>");
echo("<option value='#'>-Select-</option>");
$quer = mysql_query("select subject from matrix where fid = '$s' group by subject") or die("Invalid Access!!");
while ($row = mysql_fetch_array($quer)) {
$subject = $row['subject'];
echo("<option value='$subject'>$subject</option>");
}
echo("</select>");
?>
</td>
</tr>
<tr>
<td width="100">Upload Syllabus</td>
<td width="16">:</td>
<td width="1">
<input type = "file" name = "efile" id = "efile">
</td>
</tr>
<tr>
<td width="25"><input type="submit" value="Submit " /></td>
</tr>
</form>
</table>
</td>
</tr>
</table>