代码搜索:cgi
找到约 10,000 项符合「cgi」的源代码
代码结果 10,000
www.eeworm.com/read/145331/5746696
h cgi.h
/**
* \addtogroup httpd
* @{
*/
/**
* \file
* HTTP script language header file.
* \author Adam Dunkels
*/
/*
* Copyright (c) 2001, Adam Dunkels.
* All rights
www.eeworm.com/read/145331/5746717
c cgi.c
/**
* \addtogroup httpd
* @{
*/
/**
* \file
* HTTP server script language C functions file.
* \author Adam Dunkels
*
* This file contains functions that are calle
www.eeworm.com/read/144216/5752665
cgi frameset.cgi
#!/usr/local/bin/perl
use CGI;
$query = new CGI;
print $query->header;
$TITLE="Frameset Example";
# We use the path information to distinguish between calls
# to the script to:
# (1) create the fram
www.eeworm.com/read/144216/5752667
cgi tryit.cgi
#!/usr/local/bin/perl
use CGI ':standard';
print header;
print start_html('A Simple Example'),
h1('A Simple Example'),
start_form,
"What's your name? ",textfield('name'),
p,
"Wha
www.eeworm.com/read/144216/5752668
cgi cookie.cgi
#!/usr/local/bin/perl
use CGI qw(:standard);
@ANIMALS=sort qw/lion tiger bear pig porcupine ferret zebra gnu ostrich
emu moa goat weasel yak chicken sheep hyena dodo lounge-lizard
squirrel r
www.eeworm.com/read/144216/5752669
cgi customize.cgi
#!/usr/local/bin/perl
use CGI qw(:standard :html3);
# Some constants to use in our form.
@colors=qw/aqua black blue fuschia gray green lime maroon navy olive
purple red silver teal white yellow/
www.eeworm.com/read/144216/5752671
cgi monty.cgi
#!/usr/local/bin/perl
use CGI;
use CGI::Carp qw/fatalsToBrowser/;
$query = new CGI;
print $query->header;
print $query->start_html("Example CGI.pm Form");
print " Example CGI.pm Form
www.eeworm.com/read/144216/5752675
cgi javascript.cgi
#!/usr/local/bin/perl
# This script illustrates how to use JavaScript to validate fill-out
# forms.
use CGI qw(:standard);
# Here's the javascript code that we include in the document.
$JSCRIPT=
www.eeworm.com/read/144216/5752677
cgi crash.cgi
#!/usr/local/bin/perl
use CGI::Carp qw(fatalsToBrowser);
# This line invokes a fatal error message at compile time.
foo bar baz;
www.eeworm.com/read/144216/5752683
cgi popup.cgi
#!/usr/local/bin/perl
use CGI;
$query = new CGI;
print $query->header;
print $query->start_html('Popup Window');
if (!$query->param) {
print "Ask your Question\n";
print $query->st