PHP – Include/Require
Include and require statements are used to add file or other data into the currently executing program. Include and require
Read moreInclude and require statements are used to add file or other data into the currently executing program. Include and require
Read moreStrings are the set of characters arranged in a sequence. ‘Hello good morning’ is an example of string. Strings are
Read moreConstants are the identifiers used in the case of simple values. Variables with constant returning value is known as constants.
Read moreFunctions contain a set of statements which are execute only after the function call. Function is called using the name
Read moreArrays are used for store more than one element or data on a single variable. We can store all types
Read moreLoops execute a set of statements repeatedly till the condition get false. Note: Loops are mainly do two things that
Read moreConditional statements are basically if and combination of if and else .There is a special conditional statement named as switch .The conditions statements are take
Read moreOperators are used to performs operations in programming. The main operators used in php programming are given below Arithmetical operators
Read moreThe main php output functions are listed below echo print printf print_r var_dump Generally all output functions are used to
Read moreVariables are one of the most valuable thing in php. Because variables are used to store data which are used
Read more