in reply to Perl in HTML
I think you are translating PHP to Perl. @_Get and @_Post likely are the parameters passed with the request, so the Perl equivalent would be $cgi->param().
Also, you should use strict; at the top of your program. This forces you to predeclare all variables you need and will prevent you from misspelling variables or using variables that don't exist, like @_Get.
|
|---|