Well, there's a few things I noticed that are missing from your example, which may or may not be present in your actual code. And I hate to assume :-)

Are there end tags for your SELECT and FORM tags after your while loop that you have in there?

As for things that may certainly be breaking it -- the OPTION tags within your SELECT statement do not require end tags.. and I'm not sure, but end tags may actually break them. Unless thats part of the new XHTML thing...

Additionally, you may find that not printing out HTML code by hand is a good thing. While perhaps a few small lines may be acceptable, you appear to be using enough HTML to warrant using CGI, which can assist you with any of those HTML coding issues anyway. However, I sometimes find that certain projects are better off using an HTML Templating scheme such as HTML::Template and Template::Toolkit.

Lastly, you may want to consider trying fetchrow_arrayref(), which won't yank all the results into a single array. You can then use it like this:
while (my $row = $sth->fetchrow_arrayref()) { ## Make our HTML look better if no data. $oid = "&nbsp;" if($oid eq ""); $date = "&nbsp;" if($date eq ""); $username = "&nbsp;" if($username eq ""); print <<HTML; <OPTION>$row->[0] $row->[1] $row->[2] HTML }
This example, of course, isn't incorporating CGI, which would again probably be a good idea. And you did define earlier in your code, using "my", your $oid, $date, and $username variables, right? :-)

But if none of that does the trick, perhaps you could be more specific about how things aren't working for you, and what it is that is happening. Good luck!
-Eric


Updated various stuff

In reply to Re: Trying to add objects in dropdown by andreychek
in thread Trying to add objects in dropdown by nlafferty

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.