-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello,

> for ($1=1; $i <= $cgi->param('totalkey') ; $i++) {
$1 is not $i - If you would use 'use strict', you would find mistakes
like this very easy :)
> print "<li>$i - $cgi->param('ip$i') cgi->param('hn$i') ";
Please try:
print "<li>$i - " . $cgi->param('ip'.$i) . ' ' . cgi->param('hn'.$i);

Good Luck with 'use strict',
thomas.

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org

iD8DBQFGpMGmbTea+gJmESYRAjfGAKCGQypOlVaNBBkEc6mbrfaNeHdXFACfciml
veobtOlx6VC2NnGF7/bV/1M=
=SNcR
-----END PGP SIGNATURE-----


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to