Changing Case Function

In This Tutorial We Learn About Change Case Function In PHP. Spouse If Any One Submit Some Information In String Format Like That His/Her Name In Small Latter But You Want To Store His/Her Name In Capital Latter Or Title Case In Which Each Character Of Word Is Capital Or Any Else Then You Have Following Function. Read More------


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.


Array In PHP

In This Tutorial We Learn About Array In PHP . Array Store More Then One Data Element With A Single Name. For Example If You Want To Store The Name Of 10 Student Then You Must Declare 10 Variable, For Each Student Name You Must Declare A Unique Variable. But With The Help Of Array You Can Store All Student Name With A Single Variable. Read More------


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------


if ... else Statements in PHP

In This Tutorial We Will Learn About IF Else Statement InPHP. In IF structure if the condition is true then statements in the body of IF will be executed and if condition is false then nothing will be executed and control transfer to next statement. But if you want to execute some statement in case of False result then you will use the IF and ELSE structure




Trim Function In PHP

In This Tutorial We Learn About Trim Function In PHP. In PHP When You Want To Remove The Blank Spaces Which Are Also Called White Spaces Then You Then You Can Use Ltrim ( ) And Rtrim ( ) Function In. Below We Take Some Example To Explain These Two Function. Read More------


Include Function

In This Tutorial We Learn Include Function In PHP. Include Function In PHP Copy All The Contents Of One PHP File In Other PHP File. Once You Include A File Then All The Variable Of Include File Inherits The Variable Scope Of The Line On Which The Include Occurs And Can Be Used After This Line. Include Function Is Very Help Full When You Want To Use Same Type Of Contents In More Then Pages In The Same Way.Read More--


if ... else Statements in PHP

In This Tutorial We Will Learn About IF Else Statement InPHP. In IF structure if the condition is true then statements in the body of IF will be executed and if condition is false then nothing will be executed and control transfer to next statement. But if you want to execute some statement in case of False result then you will use the IF and ELSE structure


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.


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------