Category Archives: Javascript

PHP security best practices

Keep your PHP and software libraries up to date Make sure to keep your PHP installation and any software libraries that you use (such as frameworks or CMSs) up to date with the latest security patches. Outdated software can be vulnerable to security threats. Use prepared statements and parameterized queries Prepared statements and parameterized queries… Read More »

How to Translate Text to desired language ?

Just follow these steps and copy & paste the code you can translate text easily. Step 1 : Make a div with id (id is compulsory) Like <div id="content">Loading…</div><div id="content">Loading…</div> Step 2 : Paste the following code to head section under script tag of your webpage.   <script type="text/javascript"> google.load("language", "1");   function initialize() {… Read More »