CGI.pm Documentation
For example, the param() routine is used to set a CGIparameter to a ... use CGI 'param','header'; print header('text/plain'); $zipcode = param('zipcode'); ... wwweasystreet.com/~ovid/cgi_course/appendices/appendix3.html - 146k |
CGI::Minimal - A lightweight CGI form processing package
Called as $cgi->param(); it returns the list of all defined form fields in the same order they ... my (@multi_pick_field) = $cgi->param('pick_field_name'); ... snowhare.com/utilities/modules/cgi-minimal/ - 13k |
CGI Programming
+ cgi.body { cgi.p { "You typed: " + cgi.tt { CGI.escapeHTML(value) } } } } } require 'cgi' cgi = CGI.new who = cgi.param["Name"][0] # first param in list ... pleac.sourceforge.net/pleac_ruby/cgiprogramming.html - 17k |
Practical mod_perl
Apache::args, Apache::Request::param, and CGI::param are the three most common ways to process input arguments in mod_perl handlers and scripts. ... modperlbook.org/html/ch13_02.html - 15k |
cgi.rb
cgi.params['new_field_name'] = ["value"] # add new param cgi.params['field_name'] = ["new_value"] # change value cgi.params.delete('field_name') # delete ... rdoc.sourceforge.net/rd/rd_output.html - 10k |
CGI::ConvertParam - CGI::param()¥á¥½¥Ã¥É¤Ø¤Î´Á»ú¥³¡¼¥ÉÊÑ´¹¥Õ¥Ã ...
CGI::ConvertParam ¤Ï CGI.pm ¤Î param() ... The new() method is the constructor for a CGI::ConvertParam and sub-class. CGI_BOJECT is the reference of the CGI ... search.cpan.org/~oyama/CGI-ConvertParam-0.05/doc/README_ja.pod - 17k |
PERL Programming - CGI and param() problem
usr/bin/perl -w use strict ; use CGI::Carp qw(fatalsToBrowser) ; my $side1 = param("side1") ; my $side2 = param("side2") ; my $side3 = param("side3") ; ... wwwcodecomments.com/archive210-2004-12-336299.html - 15k |
my $db = $r->dir_config('CommentDB') || die "No DB root specified ...
my $uri = $cgi->param('uri'); my $action = $cgi->param('action') || 'view'; if ($action eq 'save') { my $ip = $r->get_remote_host(); ... axkit.org/wiki/comment?action=view;uri=/wiki/view/AxKit/FAQ - 2k |
#!/usr/bin/perl use Config::IniFiles; use strict; use CGI; my ...
$cgi->td({-align=>'LEFT'},$input); print $cgi->Tr($row); } # End for param } # End for sections $row = $cgi->td({-colspan=>'2'}, $cgi->submit('Make ... wwwcpan.org/authors/id/R/RB/RBOW/iniedit-1.04 - 3k |
duplicates cgi
Adds params if they exist, and directs # the user to a signed copy of the script in duplicates.jar if it exists. if (defined $cgi->param('ctype') ... charts.aavso.org/bugzilla/duplicates.cgi - 10k |
#!/usr/bin/perl -w # # SendMail.cgi -- This is a perl CGI script ...
if ($cgi->param('uploadedfile')) { *UPLOADFH = $cgi->param('uploadedfile'); $sm->Attach($cgi->param('uploadedfile'), \*UPLOADFH); } if ($sm->sendMail() ! ... hazard.com/feedback/SendMail_cgi.txt - 5k |
SWREG: Refund Notifications
... my $order_no = $cgi->param('order_no'); my $email = $cgi->param('email'); my $ccmail = $cgi->param('ccmail'); my $name = $cgi->param('name'); ... wwwswreg.org/services_setup_refund_notifier.htm - 13k |
Re: cgi.param(x) gone in 1.6.8?
I had some trouble with cgi.params[x] having stale values under mod_ruby, ... By the way, What kind of trouble is it? cgi.param(key) is equal ... blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/59997 - 5k |
Re: cgiparams api
Subject: Re: cgiparams api From: Dossy <dossy panoptic.com> ... Like so: class String include CGI::Param end I definitely think this is NOT the better way ... blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/40386 - 7k |
cgitest.cgi Annotated Source
else { my $vals = join "\n", map { $cgi->TR ($cgi->td ($_), $cgi->td (mangle $cgi, ($cgi->param ($_)))); } @params;. This statement builds table rows of ... wwwwashington.edu/webinfo/case/cgi/cgi.html - 8k |
Viewing cgitest.cgi
DATA_NOVAL-->}{}g; } else { my $vals = join "\n", map { $cgi->TR ($cgi->td ($_), $cgi->td (mangle ($cgi, $cgi->param ($_)))); } @params; $data =~ s{<!--/? ... wwwwashington.edu/webinfo/case/cgi/viewsource.cgi?cgitest.cgi - 3k |
Kernel::System::WebRequest - global cgiparam interface
Kernel::System::WebRequest - global cgiparam interface ... my %File = $ParamObject->GetUploadAll(Param => '123.jpg'); ... dev.otrs.org/1.3/Kernel/System/WebRequest.html - 5k |