代码搜索:cgi
找到约 10,000 项符合「cgi」的源代码
代码结果 10,000
www.eeworm.com/read/208078/7087704
c cgi.c
/*
* cgi.c -- CGI processing (for the GoAhead Web server
*
* Copyright (c) GoAhead Software Inc., 1995-2000. All Rights Reserved.
*
* See the file "license.txt" for usage and redistribution
www.eeworm.com/read/100768/7114655
h cgi.h
#include
#include
#include
#include
/******************** 定义名/值存储链表 *******************/
typedef struct input
{
char *name;
char *value;
int mod
www.eeworm.com/read/100768/7114660
c cgi.c
#include "cgi.h"
/******************** 链表头 *******************/
INPUT *input_head=NULL;
UserData *userdata_head=NULL;
OnlineList *onlinelist_head=NULL;
BPMSG *bpmsg_head=NULL;
unsigned long in
www.eeworm.com/read/411793/7120977
cgi index.cgi
#!/bin/sh
echo ""
echo ""
echo ""
echo ""
echo "SERVER_SOFTWARE=$SERVER_SOFTWARE"
echo "SERVER_NAME=$SERVER_NAME"
echo "SERVER_PROTOCOL=$SERVER_PROT
www.eeworm.com/read/411793/7120985
cgi index.cgi
#!/bin/sh
echo ""
echo ""
echo ""
echo ""
echo "SERVER_SOFTWARE=$SERVER_SOFTWARE"
echo "SERVER_NAME=$SERVER_NAME"
echo "SERVER_PROTOCOL=$SERVER_PROT
www.eeworm.com/read/129743/7128864
cgi gethtml.cgi
sub gethtml {
$url=$_[0];
require LWP::UserAgent;
$ua = new LWP::UserAgent;
$request = new HTTP::Request('GET', "$url");
$response = $ua->request($request);
my $html = $response->{_con
www.eeworm.com/read/129743/7128876
cgi weather.cgi
#!/usr/bin/perl
# 请修改下面图片目录设置(可别调用我的啊)
$imgurl="http://www.flyao.com/cgi-bin/weather/images/";
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday)= localtime(time+(3600*$time_hour));
$mon=$mon+1;
www.eeworm.com/read/463259/7184685