Quiero crear un menú desplegable con aaaa, bbbb, aaaa, cccc.
Esto es lo que tengo pero devuelve un menú vacío.
<form method="POST">
<br><br><label for="selections">Make a selection: </label>
<select id="selections" name="selections" required>
<?php
global $wpdb;
$results = $wpdb->get_results($wpdb->prepare( "SELECT columndata FROM mytable"));
foreach ($results as $pointer) {
echo "<option value="$pointer">$pointer</option>";
}
?>
</select>
</form>
.