While Loop In PHP

In This Tutorial We Will Learn About While Loop In PHP. While Loop Is Event Control Loop. Its Repeat Executing The Statement While An Specific Event Perform. Where Event Is An Condition. The Loop Goes Round And Round While The Condition Is True.


FOR Loop in PHP

In This Tutorial We Will Learn About For Loop In PHP. When We Want To Execute A Statement Or Set Of Statement More Then One Time Then We Use Loop. We Use For Loop Where We Already Know That Ho Many Time These Statements Should Be Execute


foreach Loop In PHP

In This Tutorial We Learn About For Each Loop In PHP. The For Each Loop Work With Arrays. For Every Iteration The Value Of The Array Element Is Assigned To A Variable And Then Execute The Statement In The Body Of For Each Loop. The For Each Loop Repeated Until The Array Pointer Reaches The Last Array Element.


strpos function in PHP

In This Tutorial We Learn About Strpos ( ) In PHP. The Strpos ( ) Function In PHP Search The A String In Given Text. Strpos Function Return The Location Of The String In Integer Value. If String Not Found It Return False Other Wise Return A Number.Read More------


Passing Function Arguments

In This Tutorial We Learn How We Pass The Argument To A Function In PHP. In PHP You Can Also Pass The Argument To The Function . These Argument Are The May Be Variables Or Constants Values. Function Can Be Handed Variables, So That You Can Pass The Variable Over To Your Functions By Typing Them Inside Of The Round Brackets Of The Function Name And Also You Can Directly Pass The Value To The Function. Read More------




Associative Array

In This Tutorial We Learn About Associative Array In PHP. In Associative Array Data Will Store Through String Index Value .For Example To Store The Student Marks In An Array. We Store The Each Student Marks With There Own Name. The Name Are Stored As Index And Marks As There Values. Read More------


Header Function

In This Tutorial We Learn Header() Function In PHP. The PHP Header() Function Send The Raw HTTP Headers Request To The Browser. In PHP You Can Used The Header Function For Redirect The User To Another Location. The Header Code Must Be Place At The Very Top Of The Page To Prevent Any Other Part Of The Page From Loading.Read More------


Variables in PHP

In This Tutorial We Will Learn About Variables In PHP. In Computer Programming The Variable Are That Memory Location Where The Constant Values Are Store. You Can Store Your Values On That Memory Location For The Purpose Of Further Manipulation In Your Program.


Calculation in PHP

In This Tutorial We Will Learn About How We Calculate The Numbers In PHP. The Calculation Is Main Part Of Any Programming Language. In PHP You Can Add, Subtract , Multiply And Perform Division Of Number. You Can Use The Basic Arithmetic Operator + , - , * And / For Calculation.


Explode() Function in PHP

In This Tutorial We Learn About Explode Function In PHP. Explode Function Split A Line Of Text Into More Then One Parts. For Example, If You Have Student Name In One Sentence And You Want To Break These Text And Split Each Name And Then Store In Array, Then You Can Use Explode ( ) Function. Read More------