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

📄 cookie_test.cgi

📁 嵌入式WEB
💻 CGI
字号:
#!/usr/bin/perl -wTuse strict;use CGI;use constant SOURCE_CGI => "/cgi/main.cgi";my $q      = new CGI;my $cookie = $q->cookie( -name => "cart_id" );if ( defined $cookie ) {    print $q->redirect( SOURCE_CGI );}else {    print $q->header( -type => "text/html", -expires => "-1d" ),          $q->start_html( "Cookies Disabled" ),          $q->h1( "Cookies Disabled" ),          $q->p( "Your browser is not accepting cookies. Please upgrade ",                 "to a newer browser or enable cookies in your preferences and",            $q->a( { -href => SOURCE_CGI }, "return to the store" ),            "."          ),          $q->end_html;}

⌨️ 快捷键说明

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