actually it gives you an error :)
You misspelled variable!

You made a  boo...boo....
I know bad Halloween humor....


If you set the examples...
                          you don't have to set the rules


Royce Wells
Unix Systems Engineer






let's suppose

$variable = "some text";

print "$variable\n"; # prints: some text

>>>>>>>>>> print '$varibale\n'; # prints: $variable\n

get it?

double quotes interpolate - expands variables and special characters.
single quotes do not interpolate - it's all just plain text don't think of
them as variables or special characters.





------------------------------------------------------------------------
The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.



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

Reply via email to