Well I would need an answer fast so I can work further, but..
- Inside while loop, I tried but I couldnt get it.
- <select></select>?
Update...
Ok I can display them in a dropdown menu now, all I need now is to be able to select 1 and do something with it.
<?php
require("connect.php");
$sql = "SHOW TABLES FROM base123 LIKE 'acc%'";
$result = mysql_query($sql);
?>
<select>
<?php
while ($row = mysql_fetch_row($result)) {
echo "<option> $row[0] </option>";
}
?>
</select>
<?php
?>