PHP file handling Assignment 1 Question:- create a form of four field as name, address, age and password. Input name, address, age and password through form.…
PHP file handling Assignment 1 Question:- create a form of four field as name, address, age and password. Input name, address, age and password through form.…
In this tutorial I am going to show you how to create a pagination in PHP using associative array with working tutorial. <?php $state=array(“Andhra Pradesh”=>”Hyderabad”,”Arunachal…
PHP do while loop : on reaching the control to do statement, the program proceeds to evaluated the body of the loop first. At the…
In this tutorial we will learn how to use while loop with working examples. Looping: looping is also iteration. It is the ability to perform…
Handling form Input using PHP Now you will learn how an application will work using form input. Consider the following example <?php $a=10; $b=20; $res=$a+$b;…
In this tutorial I am going to explain PHP Constant, Variable, Data Type Operator with simple examples. Constant, Variable, Data Type Operator: Constant: Constant refers…
In the following example I am going to show how to use PHP nested if else statement with working examples, examples also demonstrate how to…
In this tutorial i will going to show you how to use PHP if or if else statements with 9 working example to use under…
PHP File Handling Tutorial – File is collections of characters, words, lines, paragraphs and pages from a textual document A text file can be a…
PHP function is a set of specific program and source code which complete a specific task is function. Function separates the complexity of a large…