12-31-2007, 03:46 AM
|
#7 (permalink)
|
|
The Acquainted
Join Date: Sep 2007
Location: Arizona
Posts: 114
Thanks: 10
|
Also, with single quotes, the variables will be treated literally, so:
PHP Code:
$var = 'hi'; echo '$var'; // prints $var echo "$var"; // prints hi echo 'hi'.$var.'hi'; // prints hihihi
|
|
|