Like Us Like Us Facebook Subscribe Subscribe us YouTube Whatsapp Share us Whatsapp Query Send your queries

PHP

PHP file handling assignments with complete solution

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 pagination using associative array

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 tutorial with working examples

PHP do while loop : on reaching the control to do statement, the program proceeds to evaluated the body of the loop first. At the…


PHP While Loop Tutorial with Working Examples

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…


PHP handling form input and using SUPER GLOBAL VARIABLE

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


PHP Constant, Variable, Data Type Operator Tutorial with example

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…


PHP nested if else statement tutorial with working example

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…


PHP if else Control statement tutorial with example

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 Complete Tutorial with working example

PHP File Handling Tutorial –  File is collections of characters, words, lines, paragraphs and pages from a textual document A text file can be a…


How to Define and Call a Function in PHP Complete Tutorial

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…