View Single Post
Old 12-31-2007, 03:46 AM   #7 (permalink)
Andrew
The Acquainted
 
Join Date: Sep 2007
Location: Arizona
Posts: 114
Thanks: 10
Andrew is on a distinguished road
Default

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 
Send a message via AIM to Andrew Send a message via MSN to Andrew
Andrew is offline  
Reply With Quote