What's wrong with this Perl script?
Posted: Mon Jun 26, 2006 8:19 pm
Code: Select all
#!/usr/bin/perl
$code1 = crypt("plastikracing.net","0Q");
$code2 = crypt("www.plastikracing.net","0Q");
print "$code1";
print "$code2";A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
#!/usr/bin/perl
$code1 = crypt("plastikracing.net","0Q");
$code2 = crypt("www.plastikracing.net","0Q");
print "$code1";
print "$code2";