Posted by leegold on 02/12/06 22:16
Hi,
print '12 == 12 : '; print 12 == 12;
this works, I get:
12 == 12 : 1
but I tried to shorten it:
print '12 == 12 : ' . print 12 == 12;
I get:
112 == 12 : 1
What's that extra "1" ( meaning true I assume) at the front of the output?
Thanks
[Back to original message]
|