2009-09-04, 05:03 AM
Whitespace can cause a whole host of issues; even if it works right for you, that doesn't mean it will work right for everyone else.
As for the quotes, double quotes are parsed by PHP for variables and other objects which takes more time. Using single quotes is almost always better, using concatenation for variables (concatenation with echo is slower than using commas though).
I'm a little OCD about code readability and all the little technical stuff.
As for the quotes, double quotes are parsed by PHP for variables and other objects which takes more time. Using single quotes is almost always better, using concatenation for variables (concatenation with echo is slower than using commas though).
I'm a little OCD about code readability and all the little technical stuff.