checkbox_group => CGI, Perl


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting checkbox_group => CGI, Perl
# 15  
Old 01-14-2004
use this.

Code:
checkbox_group(
       -name=>'studenten_in_groep',
       -values=>[@member_keys],
       -defaults=>[@member_keys],
       -labels=>\%temp_members,
       -columns=>2),

i got it working just by looking at the examples in the docs for cgi.pm

1) your not useing referances correctly
2) dont misspell in your code.
# 16  
Old 01-14-2004
A reference to an array is allways done using \@array, not [@array], isn't it?
Where am i misspelling?

I copied and pasted your code, but still the same.
# 17  
Old 01-14-2004
Quote:
Originally posted by tine
A reference to an array is allways done using \@array, not [@array], isn't it?
Where am i misspelling?

I copied and pasted your code, but still the same.
is this homework? or a classroom exersize?

your missspelling: studenten_in_groep
it should be "student_in_group" it makes it much clearer when reading your code.

then you would have to send me your entire cgi program.

send it as a zip file.

the [] are for the parameters. they are used to group the values needed.

a referance to an array:
@bob=("eenie", "minie");
$joe=\@bob;

for (@$joe) { print "ArraryRef Items: $_ \n" };
ArraryRef Items: eenie
ArraryRef Items: minie

Last edited by Optimus_P; 01-14-2004 at 01:17 PM..
# 18  
Old 01-16-2004
In a previous answer you give me a piece of code to use;
checkbox_group(
-name=>'studenten_in_groep',
-values=>[@member_keys],
-defaults=>[@member_keys],
-labels=>\%temp_members,
-columns=>2),
You tell me i use references wrong, but in this code for an array reference you use [@member_keys]. That confused me, because it is not a reference!
I wasn't asking you how a reference to an array works, i was questioning your use of @member_keys in your code..

from cpan about checkbox_group:
Quote:
checkbox_group(-name=>'group_name',-values=>\@values);
Here they give an example of using the array ref the way i use it..


What makes you think this is homework??

studenten is dutch for students and groep is dutch for group, so it is not misspelling, it is just a different language than english!!

Last edited by tine; 01-16-2004 at 04:46 AM..
# 19  
Old 01-16-2004
Lightbulb

I finally found a way to solve this problem...

I give the checkbox_group a value before it is printed, so now i use:

param('studenten_in_groep' => @member_keys);

checkbox_group(-name=>'studenten_in_groep', -values=>\@member_keys, -labels=>\%temp_members, -columns=>2),
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

PERL-CGI learning

Hello All, I am actually learning PERL and more interested to learn CGI script too. Can any suggest a forum or weblink which is more helpful for a dummy CGI developer. Thanks (6 Replies)
Discussion started by: posix
6 Replies

2. OS X (Apple)

Perl CGI

I am trying to get my MacBook Pro with 10.8 Mt Lion set up to run Perl CGI scripts. Having a problem. I can start Apache Web Server with no problems. Why do I put the static and dynamic scripts? I which directory? I have looked at this article:... (3 Replies)
Discussion started by: djehresmann
3 Replies

3. Shell Programming and Scripting

CGI Perl : while loop in CGI perl

Hi Team, I am trying to connect to database(succeeded ) and print the records on the browser using while loop. But the elements of array are not displayed instead while loop is displayed directly. Instead of the below I can embed html statements in print but I am looking for the below style as I... (1 Reply)
Discussion started by: scriptscript
1 Replies

4. Shell Programming and Scripting

Perl CGI : unable to download the excel sheet from perl cgi page

Hi All, I have written an cgi perl script that displays an image(Excel image) and when clicked on that Image I need to download a excel sheet. I made sure that excel sheet exists in the folder with the given name but still I am not able to download the sheet. print "<center><table... (2 Replies)
Discussion started by: scriptscript
2 Replies

5. Shell Programming and Scripting

Perl cgi pages out of cgi-bin folder in WINDOWS

Hi team, I have a typical problem with cgi pages in apache webserver in WINDOWS I am able to execute(display) the pages that are saved in cgi-bin folder. But I am not able to execute the pages stored in htdocs or other folder other than cgi-bin folder. Could anyone please let me know how... (1 Reply)
Discussion started by: scriptscript
1 Replies

6. Shell Programming and Scripting

CGI in Perl

Hi, Am unfamiliar with using CGI modules in Perl. Though i checked in few sites about CGI , i dint get a clear idea. Can anyone please explain me the purpose of these statements, it ll be very helpful to me #!/usr/bin/perl use CGI qw/:standard/; use Storable; use Data::Dumper; my... (1 Reply)
Discussion started by: irudayaraj
1 Replies

7. Web Development

problem with exporting vairable from one perl cgi to another perl cgi script while redirecting.

Can anyone tell me how to export a variable from one perl CGI script to another perl cgi script when using a redirect. Upon running the login.pl the user is prompted to enter user name and password. Upon entering the correct credentials (admin/admin) the user is redirected to welcome page. My... (3 Replies)
Discussion started by: Arun_Linux
3 Replies

8. Shell Programming and Scripting

Perl CGI Query

Hi All, This is quite a high level question so I appologise as if it sounds a bit woolly! I'm running a script via apache's cgi-bin that calls another Perl script (from a browser): http://192.168.000.000/cgi-bin/run_script.pl?SCRIPT=test.pl&text=RANDOM+TEXT&INPUT1=444444444444 This... (4 Replies)
Discussion started by: pondlife
4 Replies

9. Shell Programming and Scripting

Learning CGI using Perl

hi everyone, i am learning CGI using Perl, but i am having problem to compile and run the scripts. the thing is that, when i want to compile my scripts i have to get connected to the internet and have to upload the scripts to a server and then only i can compile and run my scripts. so, can... (2 Replies)
Discussion started by: shifan
2 Replies

10. Shell Programming and Scripting

Perl CGI.pm

my box is FreeBSD4.3 and I use Perl 5.0005_03. Here is the CGI script. test.cgi ...... if ($query->action eq 'detail') { ...... print $query->hidden('action', 'modify'); ...... } I found that the result of test.cgi?action=detail is not what I expected. the script does not... (4 Replies)
Discussion started by: tonyt
4 Replies
Login or Register to Ask a Question