in reply to perl to run a js script

If you can access the fields from the form then you can do the lot in Perl:

use Digest::MD5 qw(md5); sub validate_form { my $password= shift; my $token = shift; return MD5 (MD5 ($password) . $token); }

DWIM is Perl's answer to Gödel

Replies are listed 'Best First'.
Re^2: perl to run a js script
by Zerhash (Scribe) on Apr 13, 2006 at 03:28 UTC
    this is a misleading title... i thought someone found a way to run perl as a java script as part of a web page. That would be impressive
        somehow i dont think that works...