⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tryit.cgi

📁 UNIX下perl实现代码
💻 CGI
字号:
#!/usr/local/bin/perluse CGI ':standard';print header;print start_html('A Simple Example'),    h1('A Simple Example'),    start_form,    "What's your name? ",textfield('name'),    p,    "What's the combination?",    p,    checkbox_group(-name=>'words',		   -values=>['eenie','meenie','minie','moe'],		   -defaults=>['eenie','minie']),    p,    "What's your favorite color? ",    popup_menu(-name=>'color',	       -values=>['red','green','blue','chartreuse']),    p,    submit,    end_form,    hr;if (param()) {    print 	"Your name is: ",em(param('name')),	p,	"The keywords are: ",em(join(", ",param('words'))),	p,	"Your favorite color is: ",em(param('color')),	hr;}print a({href=>'../cgi_docs.html'},'Go to the documentation');print end_html;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -