On 11/12/08 3:57 PM, "James Keeline" <[EMAIL PROTECTED]> wrote:

> 
> $x = 123;
> print "The value of x is $x"; // The value of x is 123
> print 'The value of x is $x'; // The value of x is $x

I usually use the concatenate thing to make sure I'm doing it right -
especially when writing my sql queries (since the ' gets used for dates and
such

echo 'The value of x is '.$x;

So far it's avoided the confusion as I take on what I thought would be a
simple 'learning' project of a 'basketball pickem' game but holy moley what
a pain



Reply via email to