In your statements:
print "@zin[$i] \n\r";

You should use:
print "$zin[$i] \n\r";

And:
> $ta = @zin[6];
> $tb = @zin[7];
> $tc = @zin[8];
> $td = @zin[9];

should be:

> $ta = $zin[6];
> $tb = $zin[7];
> $tc = $zin[8];
> $td = $zin[9];

And:
if (@zin[$t] = /212.104.202.50/g) {

Should be:
if ($zin[$t] =~ /212.104.202.50/g) {
Or:
if ($zin[$t] eq "212.104.202.50") {

Hope this helps,
Greg

__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/

Reply via email to