What is PDO Extension in PHP | Explained
PDO in PHP Example The PHP Data Objects (PDO) extension defines a lightweight, consistent interface for accessing databases in PHP. SO, in this article, we will learn PDO in PHP…
PDO in PHP Example The PHP Data Objects (PDO) extension defines a lightweight, consistent interface for accessing databases in PHP. SO, in this article, we will learn PDO in PHP…
User Defined Functions in PHP PHP has a rich set of built-in functions such as mathematical, string, data, array functions, etc. It is also possible to define a function as…
die Function in PHP The die() function in PHP is used to display the error message that specifies and exits from the current script. When an error condition is detected,…
Characteristic of PHP In this article, we will see characteristic of php. Performance Script written in PHP executes much faster than those scripts written in other languages such as JSP…
Try Catch PHP Example In this article, we will see Exception handling using try and catch block with example. The code which is capable of generating an exception or error…
PHP Array Intersect Function In this article, we will see what is the use of the PHP array intersect() function with an example. If you want to find the common…
Merge Two Arrays PHP Learn how to merge two arrays in PHP with examples. To combine two arrays, we need to use the array_merge function. This function accepts one or…
Array slice in PHP The array slice function in PHP is used to allow slice an array into smaller parts with the array_slice() function, which accepts three arguments: the origianl…
What are cookies in PHP When we enter a website using cookies, we may be asked to fill out of form providing such information as our name and interests. This…
Delete Directory PHP To delete directories in PHP, we need to use the rmdir() funciton. rmdir() takes a single argument, the name of the directory to be deleted. The deletion…