| Current Path : /var/www/html/venkat/repo2017sept/ |
| Current File : /var/www/html/venkat/repo2017sept/vadditional.php |
<?php
include ("vhmain.php");
?>
<center> <b> <u> Choose Your Option and Submit </b> </u> <br> <br></center>
<form method ="post" action = "vextraspecific.php">
<table width="60%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td width = "30%"> Choose the Option <br> <br> </td>
<td width = "10%"> : <br> <br></td>
<td width = "60%">
<select name = "table">
<?php
$quer2="select type,database1 from extra_nirf";
$sth = $link->prepare($quer2);
$sth->execute(array($count));
foreach ($sth->fetchAll() as $row) {
$database = $row['database1'];
$type = $row['type'];
echo "<option value = $database> $type </option>";
}
?>
</select>
<br> <br> </td>
</tr>
<tr>
<td width = "30%"> </td>
<td width = "10%"> </td>
<td width = "60%" > <div align="right"> <input type = "submit" value = "Submit"> </div> </td>
</tr>
</table>
</form>