PHP IF..Else..Elseif statement

PHP conditional statements are used for check or evaluate the different actions based on different conditions. The result of these conditional are either TRUE or FALSE. If the result is TRUE it means the condition […]

PHP Syntax

PHP script can be placed anywhere into the document with the PHP tags along with the HTML. Default extension for php file is “.php”. It uses built in php function “echo” to get the text […]

PHP – AJAX Search

AJAX = Asynchronous JavaScript and XML. Ajax is ideal for update the part in webpage without reload the whole page. It is used to communicate between webpage and web-server. Here we create a search box […]

PHP Switch Case Tutorial

– The PHP switch statement is used to execute distinct action based on different conditions. – PHP switch statement is mainly used to perform one statement from different different conditions. – It works like PHP […]

PHP Operators Tutorial

– PHP operators are one type of symbol which used to perform some operation or task on the variable or value. – The value or variable are known as the operands. – For example, 4 […]

PHP Data Types Tutorial

php string, php data types

PHP DATA TYPES TUTORIAL Data types are used to store the value of variable. PHP contain different data types to store different value of variable. PHP can handle total eight primitive data types: Integer, Float […]