koacamper has asked for the wisdom of the Perl Monks concerning the following question:
So, the drop down would include company1, company2, and company3. Currently, I've set up the program to have an entry field in which the the Company_Name is entered and the email address and url is shown...But I would really like to utilize a drop down instead. Here is the area that I would like to have the drop down:Company_Name|Email|URL company1|email1|URL1 company2|email2|URL2 company3|email3|URL3
Thank you#------------- Company_Name print "<tr>\n"; print "<td align=\"right\">\n"; print "Userid:\n"; print "</td>\n"; print "<td>\n"; print $query->textfield(-name=>'Company_Name', -size=>20); print "</td>\n"; print "</tr>\n";
|
---|