View Single Post
Old 08-07-2004   #9 (permalink)
Order
Local Biorust Beast
 
Order's Avatar
 
Join Date: Oct 2003
Location: San Diego, CA, USA
Posts: 2,253

Send a message via AIM to Order Send a message via MSN to Order Send a message via Yahoo to Order
first off, here is the rule on "" and '' in php.

" and " should be used where you have vars in there, if possible, use . to keep var seperate from strings as much as possible. " and " take more processing times since they check for vars inside them. This method is taught the most, but is the wrong way of doing things.

' and ' do not check for vars, and will speed your script up nicely, and it is also good coding habit. Use . to keep vars seperate.

Either way works, just the little differences in them.
__________________
Order is offline