Common PHP Programming Mistakes
Written on September 30, 2009 – 11:19 am | by admin |1.Using double quotes when you want to output a basic string echo ‘it’s ok’; echo “it’s not”; When you surround a PHP string in double quotes, it is parsed by the PHP interpreter for variables & special characters, such as “n”. If you want to output a basic string, use single quotes! it’s a performance [...]

