PHP Exception Handling

PHP Exception Handling

PHP Exception Handling

To deal with errors, PHP 5 came with a new object oriented way for handling errors. It is named as Exception handling that is used to change the normal flow of the code execution if any specified error condition occurs. This condition is called an exception. In this blog, we will explain you about the PHP Exception Handling concept.

Read More

PHP 5 Sessions and Cookies

PHP 5 sessions and Cookies

The main difference between Php 5 Sessions and Cookies is that the session data is stored on the server, while cookie data is stored on the client server. Therefore, client can easily modified the cookie contents, but we will have to work way harder to modify the session contents.

Read More

PHP Error Handling

PHP Error Handling

PHP Error Handling

In PHP, it is very easy to handle the default error. An error message that contains filename, line number and a message describes that the error is sent to the browser. Error handling becomes an important part when we are creating any scripts and web applications.

Read More

Php 5 Filter Functions

PHP 5 Filter Functions

In PHP, filters plays an important role to validate and filter data that comes from an insecure sources, like user input, etc.

Read More