Kurt,

> if ($client ne $newclient and $method ne $newmethod){
> print "something\n";                                    #I'll actually be
> printing this to my report once I get this worked out
> }

I think what you want is:
if (($client ne $newclient)&&($method ne $newmethod)) { ... }

This is covered in perlop, which you can read by:
o  Going to http://www.perldoc.com and searching for perlop
o  Typing 'perldoc perlop' at a computer with Perl installed
o  Opening $perl_dir/html/lib/pod/perlop.html on a computer with Activestate
Perl installed

Hope this helps

+Pete

--
[EMAIL PROTECTED]
;;($_='Yw_xUabcdtefgdijktljkotiersjkUzxT
yvlkbfdtcierstajogvPruntRshackRJelov')=~
y&/RTUv;wxYz$&/ ~'/;$=();$&&&eval&&print




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to