Hi,
I think I need to clarify question via pasting my query:
$query= "SELECT Catagory.LName, Ename.Name
FROM Catagory INNER JOIN Ename ON Catagory.ID =
Ename.ListID WHERE Catagory.LName='$LName'";
$result = safe_query ($query, $link);
echo ("<select name=\"Name[]\" multiple size=10>");
If (isset($result)) {
while ($row = mysql_fetch_array($result))
{
print_r ("<option>" .$row["Name"]. "\n</option>"); }
}
echo ("</select></td></tr>");
Do you think that $query need to write array too?