Unset() function means in php?
The behavior of unset() Â inside of a function can vary depending on what type of variable you are attempting to destroy. If a globalized variable…
The behavior of unset() Â inside of a function can vary depending on what type of variable you are attempting to destroy. If a globalized variable…
Error handling is the process of catching errors from the program and then taking appropriate action. Before proceeding for error handling you should get to…
String functions are the most important functions frequently used in PHP. String is the sequence of characters, like “Let’s learn String functions”. There is no…
The Include() and require() statements are used to insert codes written in other files, in the flow of  execution. The main of using include and…
A While loop is used when we have to repeat a set of statements as long as the condition is false. It could be the…
PHP for loop can be used to traverse set of code for the specified number of times. For example if you want to repeat something…
An array is a data structure that stores similar type of values in a common variable. Arrays are also called homogeneous data type. For example…