Look at the following code sample.
$ct=5;
print "hey $ct+1";
When evaluated, this returns:
hey 5+1
However, I'm trying to get the code to return:
hey 6
Does anybody know if there is some sort of evaluation call that I can make to have this occur correctly, or a way to change the syntax a tad? I know I could simply do:
$dum=$ct+1;
print "hey $dum";
But what I'm showing you is a simple version of something more complicated. If I could get this small example to work correctly, my larger problem is solved. Thanks.