passing cgi params

2003-03-15 Thread Rob Benton
If I use: my $query = new CGI; my %params = $query->Vars; to grab the incoming parameters is it safe to just send all of them over to a new cgi script like this: my $form = CGI::FormBuilder->new( fields => \%params, method => 'POST'); print $form->render(); Or will that pass along built-in para

help needed in frames with php

2003-03-15 Thread mel awaisi
Hi, help needed in frames with php I have been trying to do this for sometime now, and i am getting frustratted. i have a form that takes 2 variables (dates). the action of the form is set to index.php (a page with 2 frames) the index.php has one frame called mainmenu.php, which is a script t

Re: anonymous hash clarification

2003-03-15 Thread Wiggins d'Anconia
David Gilden wrote: Thanks Dan and the rest of the list for helping hone my PERL skills. Below is the data structure I am using, I think it is a HoH -- Hash of Hash Did get that right ? :) Yes. # This is the data structure %bags_ordered = ( "bag-style-fur" => { price => 10,

anonymous hash clarification

2003-03-15 Thread David Gilden
Thanks Dan and the rest of the list for helping hone my PERL skills. Below is the data structure I am using, I think it is a HoH -- Hash of Hash Did get that right ? :) > Well 'better and correct' depends on what your design says, we cannot > tell that. They are doing different things, that I c

Re: Net::LDAP.pm

2003-03-15 Thread drieux
On Saturday, Mar 15, 2003, at 07:49 US/Pacific, Wiggins d'Anconia wrote: [..] [EMAIL PROTECTED] wrote: Can anyone tell me why I am receiving an error can't locate Net/LDAP.pm in @ INC (@INC includes /usr/lib/perl5/5.6.1 etc, etc etc, etc. this could be the simpler problem - namely that Net::LDAP

Re: formatting money $12.00

2003-03-15 Thread Wiggins d'Anconia
David Gilden wrote: my (%bags_ordered,$bag); # is it ok to mix match the type of variables inside a # my vars declaration? Does Perl tell you it isn't? Only thing to watch out for here is combining list and scalar type variables during assignment. @bags = param('handbag'); #CGI.pm fo

Re: passing page URL to SSI script

2003-03-15 Thread Wiggins d'Anconia
javamaster wrote: I am including the same CGI script as an SSI on several web pages. I need to know which page the script was run from (something like the javascript window.location variable). I want to be able to know if the script was executed from index.html, or contact.html, or products.ht

Re: Net::LDAP.pm

2003-03-15 Thread Wiggins d'Anconia
[EMAIL PROTECTED] wrote: Can anyone tell me why I am receiving an error can't locate Net/LDAP.pm in @ INC (@INC includes /usr/lib/perl5/5.6.1 etc, etc etc, etc. I've never quite gotten this to work. The farthest I've gotten is that the "use Net::LDAP" (as in your case) was being found, but th

Re: extracting publik key from certificate

2003-03-15 Thread Wiggins d'Anconia
uma ramdoss wrote: hai, i am developing an application which involves extracting public key from certificates. can anyone help me on how to do it. Possibly, but your question does not appear related to CGI so you may get more/better answers from a different mailing list. There is a crypto

Re: Sending JavaScript variables to a perl program

2003-03-15 Thread David Gilden
Hwo about this: