Quote:
Originally Posted by Schetti
scripting is lame sometimes just because ""
|
No it's not, you'll understand why when you get into more advanced scripting.
If you don't have quotes, it thinks it's a variable. How is it supposed to differentiate between variables and strings?
PHP Code:
temp.foo = "bar";
echo(foo);
The example above explains this. Would it echo "bar" or "foo"?