conditional statements in php

Condition Statement -: we have seen php program is a set of statements which are normally executed sequentially in the order in which they appear.this happens when no option or no repetition for certain calculation are necessary. When we are writing a code in a program then there are some time we get some condition … Read more

how to define data type in php

Data-Type introduction -: Data types in “php ”language is rich in its data type. The storage representation and machine instruction to handle constant differ from machine to machine. the variety of data types available allow to the programmer to select the type approach appropriate to the needs of the application as well as the machine. … Read more

how to use operator in php

Operator in php- Like any other programming language operator play a very important role in php. Operator is a symbol as like +, -, *, / , etc. Operators are used to perform operations on variables and values. Php support a rich set of built in operator we have already used several of them such … Read more

how to define constant in php

Introduction of Constant in php-: Like any other language constant are use in php.  Constants are like a variable that don’t change during execution. php refer to fixed value that do not change during the execution of a program. There are two type constant in php. define constant keyword constant   1 -:How to define constant … Read more

how to use variable in php

Variable Introduction -: Like other language a variable in php store the temporary data.A variable data name that may be used to store a data value only constant that remain unchanged during the execution of a program a variable may take different values at different times during execution we used several variable. Variable store the … Read more

what is php

Introduction of php –:  php is a scripting language.That run on server side. PHP is a powerful tool for making dynamic and interactive Web pages. PHP is a free tool for creating a good website. You can create a good static or dynamic website or web application. PHP full name is Hypertext Pre-Processor. PHP means personal home … Read more