Re: CGI.pm and scrolling list box code error

2011-05-31 Thread Dr.Ruud
On 2011-05-31 02:48, John M Rathbun MD wrote: I'm an [...] trying to convert some of my old BASIC programs to run in a browser Use JavaScript? -- Ruud -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: CGI.pm and scrolling list box code error

2011-05-30 Thread Shlomi Fish
Hi John, On Tuesday 31 May 2011 03:48:44 John M Rathbun MD wrote: > Hello, World! > > I'm an amateur programmer trying to convert some of my old BASIC > programs to run in a browser so people don't have to download and > install software. I'm having a problem with my current project because > CGI

Re: CGI.pm and scrolling list box code error

2011-05-30 Thread Michael Greb
On Mon, May 30, 2011 at 08:48:44PM -0400, John M Rathbun MD wrote: >print scrolling_list(-name => 'choose',-values=>@terms,-size=>254); scrolling_list wants a reference for the value list: print scrolling_list(-name => 'choose',-values=>\@terms,-size=>254); This should do what you want, w

Re: CGI.pm and scrolling list box code error

2011-05-30 Thread Uri Guttman
> "JMRM" == John M Rathbun MD writes: JMRM> I'm an amateur programmer trying to convert some of my old BASIC JMRM> programs to run in a browser so people don't have to download and JMRM> install software. I'm having a problem with my current project because JMRM> CGI.pm is generating