PHP stands for Hypertext Preprocessor. It is an open source server-side scripting language which is widely used for web development. It supports many databases like MySQL, Oracle, Sybase, Solid, PostgreSQL, generic ODBC etc.
PEAR is a framework and repository for reusable PHP components. PEAR stands for PHP Extension and Application Repository. It contains all types of PHP code snippets and libraries.
It also provides a command line interface to install "packages" automatically.
Rasmus Lerdorf
The old name of PHP was Personal Home Page.
In static websites, content can't be changed after running the script. You can't change anything on the site. It is predefined.
In dynamic websites, content of script can be changed at the run time. Its content is regenerated every time a user visit or reload. Google, yahoo and every search engine is the example of dynamic website.
The scripting engine that powers PHP is called Zend Engine 2.
PHP4 doesn't support oops concept and uses Zend Engine 1.
PHP5 supports oops concept and uses Zend Engine 2.
PHP has borrowed its syntax from Perl and C.
PHP echo output one or more string. It is a language construct not a function. So the use of parentheses is not required. But if you want to pass more than one parameter to echo, the use of parentheses is required.
PHP print output a string. It is a language construct not a function. So the use of parentheses is not required with the argument list. Unlike echo, it always returns 1.
Echo can output one or more string but print can only output one string and always returns 1.
Echo is faster than print because it does not return any value.
A PHP variable is the name of the memory location that holds data. It is temporary storage.
$message stores variable data while $$message is used to store variable of variables.
$message stores fixed data whereas the data stored in $$message may be changed dynamically.
PHP constants are name or identifier that can't be changed during execution of the script. PHP constants are defined in two ways:
PHP magic constants are predefined constants, which change based on their use. They start with a double underscore (__) and end with a double underscore (__).
PHP data types are used to hold different types of data or values. There are 8 primitive data types which are further categorized in 3 types:
PHP single line comment is made in two ways:
PHP multi-line comment is made by enclosing all lines within.
For, while, do-while and for each.
The PHP count() function is used to count total elements in the array, or something an object.
The header() function is used to send a raw HTTP header to a client. It must be called before sending the actual output. For example, you can't print any HTML element before using this function.
The isset() function checks if the variable is defined and not null.
PHP parameterized functions are functions with parameters. You can pass any number of parameters inside a function. These given parameters act as variables inside your function. They are specified inside the parentheses, after the function name. Output depends upon dynamic values passed as parameters into the function.
PHP supports variable length argument function. It means you can pass 0, 1 or n number of arguments in function. To do this, you need to use 3 ellipses (dots) before the argument name. The 3 dot concept is implemented for variable length argument since PHP 5.6.
PHP supports variable length argument function. It means you can pass 0, 1 or n number of arguments.
An array is used to store multiple values in a single value. In PHP, it orders maps of pairs of keys and values. It saves the collection of the data type.
There are three types of array in PHP:
There are many array functions in PHP:
The indexed array holds elements in an indexed form which is represented by number starting from 0 and incremented by 1. For example:
The associative array holds elements with name. For example:
The strlen() function is used to get the length of the string.
There are many array functions in PHP:
There are two methods GET and POST.
You can use JavaScript submit() function to submit the form without explicitly clicking any submit button.
PHP allows you to include file so that page content can be reused again. There are two ways to add the file in PHP.
Require and include both are used to include a file, but if data is not found include sends warning whereas require sends Fatal error.
PHP setcookie() function is used to set cookie with HTTP response. Once the cookie is set, you can access it by $_COOKIE superglobal variable.
PHP Engine creates a logical object to preserve data across subsequent HTTP requests, which is known as session.
Sessions generally store temporary data to allow multiple PHP pages to offer a complete functional transaction for the same user.
Simply, it maintains data of an user (browser).
A session creates a file in a temporary directory on the server where registered session variables and their session id are stored. This data will be available to all pages on the site amid that visit.
The area of the temporary record is controlled by a setting in the php.ini document called session.save_path.
At the point when a session is begun following things happen -
PHP session_start() function is used to start the session. It starts new or resumes the current session. It returns the current session if the session is created already. If the session is not available, it creates and returns new sessions.
The main difference between session and cookie is that cookies are stored on user's computer in the text file format while sessions are stored on the server side.
Cookies can't hold multiple variables, on the other hand, Session can hold multiple variables.
You can manually set an expiry for a cookie, while session only remains active as long as browser is open.
PHP fopen() function is used to open file or URL and returns resource. It accepts two arguments: $filename and $mode.
PHP provides various functions to read data from the file. Different functions allow you to read all file data, read data line by line, and read data character by character.
PHP file read functions are given below:
PHP fwrite() and fputs() functions are used to write data into file. To write data into a file, you need to use w, r+, w+, x, x+, c or c+ mode.
The unlink() function is used to delete a file in PHP.
You should just run the PHP command line interface (CLI) and specify the file name of the script to be executed as follows.
The move_uploaded_file() function is used to upload file in PHP.
The readfile() function is used to download the file in PHP.
The mail() function is used to send email in PHP.
There are two methods to connect MySQL database with PHP. Procedural and object-oriented style.
The mysqli_connect() function is used to create a connection in PHP.
Since PHP 4.3, mysql_reate_db() is deprecated. Now you can use the following 2 alternatives.
By default, the maximum execution time for PHP scripts is set to 30 seconds. If a script takes more than 30 seconds, PHP stops the script and returns an error.
You can change the script run time by changing the max_execution_time directive in the php.ini file.
When a script is called, set_time_limit function restarts the timeout counter from zero. It means, if default timer is set to 30 sec, and 20 sec is specified in function set_time_limit(), then script will run for 45 seconds. If 0sec is specified in this function, script takes unlimited time.
There are 3 types of error in PHP.
The exit() function is used to stop the execution of PHP script.
CRYPT() and MD5()
The .htaccess is a configuration file on Apache server. You can change configuration settings using directives in Apache configuration files like .htaccess and httpd.conf.
The PHP explode() function breaks a string into an array.
The PHP split() function splits string into an array by regular expression.
A persistent cookie is permanently stored in a cookie file on the browser's computer. By default, cookies are temporary and are erased if we close the browser.
imagetypes() gives the image format and types supported by the current version of GD-PHP.
The Include() function is used to put data of one PHP file into another PHP file. If errors occur, then the include() function produces a warning but does not stop the execution of the script, and it will continue to execute.
The Require() function is also used to put data of one PHP file to another PHP file. If there are any errors, then the require() function produces a warning and a fatal error and stops the script.
A cookie is used to identify a user. A cookie is a little record that the server installs on the client's Computer. Each time a similar PC asks for a page with a program, it will send the cookie as well. With PHP, you can both make and recover cookie value.
Some important points regarding Cookies:
PHP parser parses the PHP developed website from the opening to the closing tag. Tags indicate that from where PHP code is being started and ended. In other words, opening and closing tags decide the scope of PHP scripting syntax of closing tag in PHP
<?php syntax of opening tag in PHP
?> syntax of closing tag in PHP
The necessary steps to create a MySQL database using PHP are: