Re: CGI simple but not working - I discovered

2002-10-03 Thread Bruno Negrao - Perl List
start_form; # hr() emits html horizontal rule: print p("Please select a flavor: ", textfield("flavor","mint")); print end_form, hr; } Thanks, bnegrao. - Original Message - From: "Bruno Negrao - Perl List" <[EMAIL PROTECTED]> Cc: <

RE: CGI simple but not working

2002-10-03 Thread nkuipers
I've never used CGI before, I know nothing about it. Offhand though, from looking at your actual versus expected output (opened in new window ;) , I have to wonder if the reason you get a literal "textfield("flavour","mint") is because you have surrounded that statement in your code with a q()

Re: CGI simple but not working

2002-10-03 Thread Bruno Negrao - Perl List
Hello Nathanael and other guys, > First of all, if possible, use the Llama 3rd, not 2nd. It's not... :-( > Second, can you give the expected output and the actual output. I tried to send the pictures to this list but my e-mail was rejected as it grew upon 5 bytes In sumary, this script sh

RE: CGI simple but not working

2002-10-03 Thread nkuipers
I've never used CGI before, I know nothing about it. Offhand though, from looking at your actual versus expected output, I have to wonder if the reason you get a literal "textfield("flavour","mint") is because you have surrounded that statement in your code with a q() structure. In other word

RE: CGI simple but not working

2002-10-03 Thread nkuipers
First of all, if possible, use the Llama 3rd, not 2nd. Second, can you give the expected output and the actual output. What platform are you on, what version of perl are you using, etc? Nathanael "Ain't no blood in my body, it's liquid soul in my veins" ~Roots Manuva -- To unsubscribe, e-ma

CGI simple but not working

2002-10-03 Thread Bruno Negrao - Perl List
Hi all, I'm studying the "Learning Perl Second Edition" and I'm learning cgi now. The book presents a sample cgi that doesn't produces the expected result as the book says it would. Could someone test it and say to me if there is something wrong? The following script was retired from the section