Scans your site and returns information about your SSL implementation and certificate. Helpful for debugging and validating your SSL configuration.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
ID int
firstname varchar(64)
lastname varchar(64)
Do simply like this:
<select name="person">
<?
$res = mysql_query("select * from person order by lastname,firstname");
if($inf = mysql_fetch_array($res))
{
do{
echo "<option value=\"".$inf["ID"]."\">"
} while($inf = mysql_fetch_array($res));
}
?>
</select>