PHP oops - What is Class?
PHP class is collection of objects. Classes are the blueprints of objects.PHP Class includes local methods and local variables....
PHP class is collection of objects. Classes are the blueprints of objects.PHP Class includes local methods and local variables....
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 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....
We can send attachments with email using mail() function. You will have to set Content-type header to multipart/mixed. Then text and attachment sections can be specified within boundaries....
PHP mail() function is used to send HTML email. HTML email message contails HTML tags like image, table, link, banners etc....
Learn PHP mail() function tutorials. PHP mail() function is used to send eamils. We can send text email, HTML email, attachments with email using PHP mail() function....
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 ...
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 ...
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 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 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 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. ...
PHP Include and Require function or statement are used to include PHP, HTML, or text on multiple pages of a website. One file can use code of another file using PHP Include and Require function....
PHP Arrays is used to save multiple values in a single variable. PHP array is variable which can store more than one value at a time....
PHP Data Types is used to store different type of value like integer, character, string, array, float, decimal, date, boolean etc. in varaibale....
Magic constants are the predefined constants in PHP which is changed depending on where they are used. They start with double underscore (__) and ends with double underscore.Learn PHP Magic Constants tutorials easily....
Value of PHP Constants can not be changed during the execution of the script. PHP Constants is an identifier or name which contains value....
Assigned by $ sign variable is normal variable and $$ sign variable is reference variable. Single dollar sign ($) assigned variable ($str) stores any value like string, integer, float, data, char, double etc. Double dollar sign ($$) assigned variable ($$str) stores value of the $str inside it....
PHP Comments can be used to hide portion of code line and code description in php programming code. PHP Comments line code can not be executed. programmer can use PHP Comments to describe code details....
PHP print statement is used to print the string, multi-line strings, escaping characters, variable, array, number etc. Learn PHP Print statement ...