in reply to http referers, if, else and failures

First observation: my @referers = ('$ips'); $ips doesn't get interpolated, as it stands in single-quotes. I wonder if you meant

my @referers = @$ips;
or something like that.

regards,
tomte


Hlade's Law:

If you have a difficult task, give it to a lazy person --
they will find an easier way to do it.