
PK 
<?php
include("connexion.php");
include("head.php");
?>
<table width="100%" border="4" cellpadding="8" cellspacing="1">
<form action="add_sig_login.php" method="post">
<tr>
<td><strong>Staff:</strong>
<?php
$quer=mysql_query("SELECT * FROM amembs order by name");
echo "<select name='staff'><option value=''>Select one</option>";
while
(
$noticia = mysql_fetch_array($quer))
{
echo "<option value='$noticia[id]'>$noticia[name]</option>";
}
echo "</select>"; ?>
</td>
</tr>
<tr>
<td><strong>Name:</strong>
<input type="text" name="name"></td>
</tr>
<tr>
<td><strong>Code : </strong>
<input type="text" name="code"></td>
</tr>
<tr>
<td><strong>Extra Code : </strong>
<input type="text" name="code1"></td>
</tr>
<tr>
<td><strong>Year : </strong>
<input type="text" name="year"></td>
</tr>
<tr>
<td align="center" colspan="2"><input type="image" src="../img/loginc.gif"></td>
</tr>
</form>
</table>
</div>
</div>
<?php
include("foot.php");
?>


PK 99