On Friday, May 17, 2002, at 09:17 , Francesco Guglielmo wrote:
>
> Where is my error?
> I suppose in the "if".....
> I want to print $usr $pass $email
well I personally would have started with
#!/usr/bin/perl -w
use strict;
I also like to be a bit more explict on splits
my ($usr1,$email) = split(/\s/, $_)
note, no space between split and (....);
at which point one would like to know what the 'error'
messages were that came out when the code ran....
ciao
drieux
---
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]