Use as few plugins as possible
Avoid using plugins (Flash Player, Java and Silverlight virtual machines, etc.) because they can be a heavy drain on resources (CPU and RAM). This is especially true with Adobe’s Flash Player, to such an extent that Apple decided to not install the technology on its mobile devices to maximize battery life. Favor standard technology such as HTML5 and ECMAScript.
Use single quotes (') instead of double (“)
You can use either single (‘) or double (“) quotes to declare a character string in PHP. Double quotes allow the developer to insert variables which will be substituted when run.
But if the character string has no variables, use single quotes instead. This stops the PHP from looking for variables to substitute, reducing CPU usage.