combo box insted of hyper link
look at code below
=============
<?php
include 'config.php';
include 'opendb.php';
$query = "SELECT id, name FROM upload";
$result = mysql_query($query) or die('Error, query failed');
if(mysql_num_rows($result) == 0)
{
echo "Database is empty <br>";
}
else
{
while(list($id, $name) = mysql_fetch_array($result))
{
?>
<a href="download.php?id=<?php echo $id;?>"><?php echo $name;?></a> <br>
<?php
}
}
mysql_close($conn);
?>
<?php
i want to use combo or menu/list insted of hyper link what can i do
please hel me
infact i want to select a field form database then fit into a combo box then i use selected id to view all information related to selected
id
any idea???
|