#! /usr/bin/perl -w require ("cgi-lib.pl"); $success=0; print "Content-type: text/html\n\n"; @my_query = split(/&/,$ENV{'QUERY_STRING'}); foreach (@my_query) { @key_value = split(/=/,$_); push @solved, $key_value[1]; } $solved_str = join('',@solved); if ($solved_str eq "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefgh ijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghij klmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd") { $success=1; } if ($success) { print << 'End_Of_Text'; Success.

Hooray! You've solved the puzzle!

Congrats. Go out, have a beer. Eat some salami. End_Of_Text } else { print << 'End_Of_Text'; Failure.

Sorry, try again.

One of your answers is incorrect. Click back and try again. End_Of_Text }