PHP $ and $$ Variables
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: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
By CuckooRadio Editorial Team|2018-08-11T09:19:48-05:00August 11th, 2018|Php|
PHP allows you to define C++ style default argument values. In such case, if you don't pass any value
By CuckooRadio Editorial Team|2018-08-11T09:08:06-05:00August 11th, 2018|Html|
HTML <br> tag or element is used to break line in a paragraph. It is generally used in poem
By CuckooRadio Editorial Team|2018-08-11T09:05:20-05:00August 11th, 2018|Html|
HTML script tag is used to specify client-side script such as JavaScript. It facilitate you to place a script within
By CuckooRadio Editorial Team|2018-08-09T07:00:30-05:00August 9th, 2018|Php|
PHP Parameterized functions are the functions with parameters. You can pass any number of parameters inside a function. These
By CuckooRadio Editorial Team|2018-08-09T06:59:40-05:00August 9th, 2018|Php|
Magic constants are the predefined constants in PHP which get changed on the basis of their use. They start
By CuckooRadio Editorial Team|2018-08-09T06:58:13-05:00August 9th, 2018|Html|
HTML bold tag is represented by <b> tag. HTML <b> tag is used to display the written text in bold format.