On Tue, 2003-09-02 at 14:21, rkl wrote:
> Thanks! You guys.gals are fast! 
> 
> Ok. Use eq instead of == for string compare but does single quote or qouble 
> quote matter? 
> 
> thanks again,
>  -rkl 

rkl,

Single/Double quotes determine interpolation of variables contained
within the quotes... for example:

$bob = 'hello'; # or "hello" doesn't matter if no variables are present
$foo = '$bob';
$bar = "$bob";

print $bob;
print $foo;
print $bar;

This should result in the following (I have not tested it but you should
get the idea from this example):

hello
$bob
hello

Tim.


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

Reply via email to