PHP - What is OOP?

PHP OOP is Object-Oriented Programming. Procedural programming is about writing procedures or functions that perform operations on the data while object-oriented programming is about creating objects and class that contain both data and functions....

PHP Functions

PHP Functions is used to reuse php code. PHP Functions contains a piece of code which takes one or more parameter as input and make some processing on it and returns a value....

PHP Error Types

PHP Error is some fault or mistake in a coding program. Error may occur due to incorrect syntax or wrong logic. It is a type of mistakes or condition of having incorrect knowledge of the code. There are 4 mainly types of errors occured in PHP like Fatal Error, Syntax Error or Parse Error, Warning Error, Notice Error ...

PHP Error Handling

Error handling is the process of catching errors occured by your program and then taking appropriate action. PHP system provides many error handling methods to manage errors occured during execution time. There are various different error handling methods like die() function, Defining Custom Error Handling Function and Error reporting ...

PHP header

The header() function sends a raw HTTP header to a client. The PHP header() function does not return any value.Learn PHP header PHP header tutorials easy....

PHP File Upload

PHP allows you to upload single and multiple files to server. Learn PHP File Upload tutorials easy. move_uploaded_file() function or copy() function is used to upload file in server. ...

PHP File Handling

PHP File System allows us to create file, read file line by line, read file character by character, write file, append file, delete file and close file. PHP provides fopen(), fclose(), fread(), fwrite(), unlink() function to manipulates files....

PHP POST and GET Method

PHP POST and GET Method are used to retrive data from another page or same page which are sent by FORM. Data sent by post request can be retrived by $_POST variable. Data sent by get request can be retrived by $_GET variable. ...