Hello, I am creating a dropdown list that is populated from an Access DB:
<?php
include 'DBConnect.php';
echo "<a href='Users.php'>Users</a><br>";
echo "<a href='FixedBugs.php'>Fixed Bugs</a><br>";
echo "<a href='Printable.php'>Printable</a><br>";
$users = $conn->Execute("SELECT * FROM WebUsers");
$fu1 = $users->Fields("Name");
//Dropdown box - dynamic
echo "<select name='users'>";
while(odbc_fetch_row($users))
{
echo "<option value=''>".$fu1->value."</option>";
}
echo "</select>";
The code gives no errors but does not work i.e. nothing in list.
Cheers anyone for ideas why