代码搜索:cgi
找到约 10,000 项符合「cgi」的源代码
代码结果 10,000
www.eeworm.com/read/116048/14991452
cgi naff.cgi
//qqpwjfdifjdaersaocibstyvb4930ab6n05213cnv0wa46nb2v0765b08176bnc9f
//(*&)%)$*^(%()*^)(_*)*^(%$)$*
www.eeworm.com/read/116048/14991456
cgi int.cgi
newstr teststr
newint testval
inc testval% 1
inc testval% 2
inttostr testval% teststr$
print teststr$
www.eeworm.com/read/116048/14991460
cgi bracket.cgi
print ['hello' + 'world']
print ['this' + 'is' + 'me']
www.eeworm.com/read/116048/14991468
cgi jwacky.cgi
redefstr method
if (method$ == '')
includefile 'jcow.htx'
endif
if (method$ == 'set')
print ''
print 'Cl
www.eeworm.com/read/116048/14991473
cgi test.cgi
proc html_header
print '' & title$ & ''
endproc
proc html_footer
print ''
endproc
proc access_denied
title$ = 'ACCESS DENIED'
call html_header
www.eeworm.com/read/116048/14991475
cgi file.cgi
redefstr data
if (method$ == 'write')
file openout 'test.dat' 1
fwrite 1 data$
file close 1
print '
www.eeworm.com/read/116048/14991479
cgi instr.cgi
print instr(1,'howdy hi hello','hello')
print mid('howdy hi hello',instr(1,'howdy hi hello','hello'),(4 + 1))
print len('hello world')
print replstr('HELLO ALL YE PEOPLE','HELLO','HI')
www.eeworm.com/read/116048/14991485
cgi piggy.cgi
if name$ == 'dale'
print 'hi dal'
if name2$ == 'reidy'
print 'reidy'
endif
if name2$ == 'baz'
print 'baz'
endif
endif