PHP Recursive Function
PHP also supports recursive function call like C/C++. In such case, we call current function within function. It is
By CuckooRadio Editorial Team|2018-08-18T04:42:31-05:00August 18th, 2018|Php|
PHP also supports recursive function call like C/C++. In such case, we call current function within function. It is
By CuckooRadio Editorial Team|2018-08-18T04:41:02-05:00August 18th, 2018|Php|
PHP allows you to associate name/label with each array elements in PHP using => symbol. Such way, you can
By CuckooRadio Editorial Team|2018-08-18T04:36:03-05:00August 18th, 2018|Php|
PHP indexed array is an array which is represented by an index number by default. All elements of array
By CuckooRadio Editorial Team|2018-08-18T04:34:40-05:00August 18th, 2018|Php|
You can append data into file by using a or a+ mode in fopen() function. Let's see a simple example
By CuckooRadio Editorial Team|2018-08-18T04:33:58-05:00August 18th, 2018|Php|
PHP enables you to download file easily using built-in readfile() function. The readfile() function reads a file and writes
By CuckooRadio Editorial Team|2018-08-18T04:31:46-05:00August 18th, 2018|Php|
PHP allows you to upload single and multiple files through few lines of code only. PHP file upload features
By CuckooRadio Editorial Team|2018-08-18T04:30:51-05:00August 18th, 2018|Php|
PHP mysql_query() function is used to execute select query with order by clause. Since PHP 5.5, mysql_query() function is deprecated. Now it
By CuckooRadio Editorial Team|2018-08-11T09:31:44-05:00August 11th, 2018|Php|
The $var (single dollar) is a normal variable with the name var that stores any value like string, integer, float, etc.
By CuckooRadio Editorial Team|2018-08-11T09:29:54-05:00August 11th, 2018|Php|
PHP allows you to call function by value and reference both. In case of PHP call by value, actual
By CuckooRadio Editorial Team|2018-08-11T09:25:40-05:00August 11th, 2018|Php|
In case of PHP call by reference, actual value is modified if it is modified inside the function. In