Re: PERL CGI drop down list

2006-06-16 Thread Prabu
Mark Martin wrote: Thanks Prabu , Works great. I'm not having any luck finding good documentation on this so I'll throw 2 more questions at you if that's okay: Is there a method for setting the selected value as with the html below? Also, is it possible to display meaningful text instead of

Re: PERL CGI drop down list

2006-06-16 Thread Chandru
Prabu Ayyappan wrote: On 6/16/06, Mark Martin <[EMAIL PROTECTED]> wrote: Hi, does anybody have the correct syntax for using a drop down list. I'm using the object oriented type syntax for CGI. For example my text boxes are printed thus : $cgi = new CGI; print $cgi->input({-type=>"text",-name=>

Re: PERL CGI drop down list

2006-06-16 Thread Mr. Shawn H. Corey
On Fri, 2006-16-06 at 11:43 +, Mark Martin wrote: > Hi, > does anybody have the correct syntax for using a drop down list. > I'm using the object oriented type syntax for CGI. For example my text > boxes are printed thus : > > $cgi = new CGI; > print $cgi->input({-type=>"text",-name=>"textbox

Re: PERL CGI drop down list

2006-06-16 Thread Prabu Ayyappan
On 6/16/06, Mark Martin <[EMAIL PROTECTED]> wrote: Hi, does anybody have the correct syntax for using a drop down list. I'm using the object oriented type syntax for CGI. For example my text boxes are printed thus : $cgi = new CGI; print $cgi->input({-type=>"text",-name=>"textbox01",-class=>"te

PERL CGI drop down list

2006-06-16 Thread Mark Martin
Hi, does anybody have the correct syntax for using a drop down list. I'm using the object oriented type syntax for CGI. For example my text boxes are printed thus : $cgi = new CGI; print $cgi->input({-type=>"text",-name=>"textbox01",-class=>"textbox"}) drop down list innormal html would be :