I am developing a select "How did you find out about...?" field on a subscription sign-up page.
http://test.kripalu.org/ctlg_order.php
I have a request to have all the choices show at once without the scroll, as there are only five more than show now when you first click. My current code is:
Any thoughts?HTML Code:<option selected value="">Please select One</option> <?php while ($how = mysql_fetch_array($how_found)) { $name = $how['name']; $code = $how['code']; echo "<option value='$code'>$name</option>\n"; } ?> </select>







Bookmarks