View Single Post
  #8 (permalink)  
Old 10-12-03, 05:34 PM
Chroder Chroder is offline
Newbie Coder
 
Join Date: Sep 2003
Location: Toronto, Ontario
Posts: 41
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by The Wolf
Code:
echo 'This variable is ' . $variable . '.';
Thats a bad thing to teach someone, this code is much better and faster:

Code:
echo 'This variable is ', $variable, '.';
I think its better to introduce the dot operator to a beginner.
__________________
DevBox.net | DevBoxForums.com
Reply With Quote