[cgiapp] help with scrolling_list and htmltmpl from cgiapp

2002-05-30 Thread Zachary Buckholz
I have been trying to generate a page based on the code fragment below. But when the page appears I get the scrolling_list on the page, but the value inside the list is \@contacts. I must be doing something wrong because the docs say I can pass an array reference as I am doing. Can anyone point

Re: [cgiapp] help with scrolling_list and htmltmpl from cgiapp

2002-05-30 Thread Gerard ter Haar
Hi, I guess the assignment have not been made correctly because of the single quotes. My guess would be this line: my $contact_list = $q-scrolling_list(-name='contacts', -values=\@contacts, -multiple='true'); Kind

Re: [cgiapp] help with scrolling_list and htmltmpl from cgiapp

2002-05-30 Thread Mark Koopman
Try replacing -values='\@contacts' with -values=$contacts. yet another reason to get into the habit of 'use strict'; -- Mark Koopman WebSideStory San Diego CA 92121 . perl -e 'print chr

Re: [cgiapp] HElp IDE!!

2002-05-13 Thread tomasz konefal
Ernesto wrote: I'm looking for a develop enviroment to work on my cgi archives, i'm tired to work on pico linux editor :=) Then i would like to work on something more friendly . . . i myself use vim, screen, and a web browser for all my development needs. vim's got the syntax highlighting

Re: [cgiapp] HElp IDE!!

2002-05-13 Thread Mark Stosberg
On Mon, 13 May 2002, tomasz konefal wrote: Ernesto wrote: I'm looking for a develop enviroment to work on my cgi archives, i'm tired to work on pico linux editor :=) Then i would like to work on something more friendly . . . i myself use vim, screen, and a web browser for all my

Re: [cgiapp] Help!!

2002-04-12 Thread Brett Sanger
I am trying to put a graph in my application and I am getting the junk on the web page insted of the image. I changed the header to image/png via $q-header() method still its not working. Can anyone help me with this problem. The code for the script is as below. CGI::App takes over sending