PHP Zone

How to use a switch case in PHP?

2 Nov , 2015  

The switch statement is similar to a series of IF statements on the same expression. In many occasions, you may want to compare the same variable (or expression) with many different values, and execute a different piece of code depending on which value it equals to. This is exactly what the switch statement is for.

, , , , , ,

PHP Zone,Wordpress Zone

Using Cookies in WordPress Site: The Why and How Of It?

28 Oct , 2015  

cookies are tiny pieces of information placed on the browser of a user. WordPress makes use of cookies to legitimate the identity of users that are logged into your site. However, the problem is that cookies get saved in the user's browser once they've approved to store them in their browser window.

, , , ,

PHP Zone

Export MySQL data to Excel in PHP

27 Oct , 2015  

Here is the PHP Sample Code to Export MySQL Data into Excel / Spreadsheet File

, , , , ,

PHP Zone,Tech Zone

How to transfer the large database file from one server to another server?

24 Oct , 2015  

MySQLDumper is a PHP and Perl based tool for backing up MySQL databases. You can easily dump your data into a backup file and - if needed - restore it. It is especially suited for shared hosting webspaces, where you don't have shell access. MySQLDumper is an open source project and released under the GNU-license.

, , , , ,

PHP Zone

How to call the function inside the Smarty Foreach Loop?

21 Oct , 2015  

Smarty is a template engine for PHP, facilitating the separation of presentation (HTML/CSS) from application logic. This implies that PHP code is application logic, and is separated from the presentation.

, , , ,

PHP Zone,Tech Zone

Oracle Announces General Availability of MySQL 5.7

19 Oct , 2015  

Oracle Announces General Availability of MySQL 5.7, The new version of the world’s most popular open source database is up to 3x faster than MySQL 5.6 in benchmark tests.

, , , , ,

PHP Zone

How to add tamil language in FCK Editor ?

14 Oct , 2015  

CKEditor (formerly FCKeditor) is an open source WYSIWYG text editor from CKSource designed to bring common word processor features directly to web pages, simplifying their content creation. It aims to be lightweight and requires no client-side installation. CKEditor is distributed under the GPL, LGPL and MPL licenses.

, , , , , ,

PHP Zone

How to Pass the array values on query string in PHP

10 Oct , 2015  

How to pass the array values in query string in PayPal checkout URL button

, ,