Tuesday, November 15, 2022

How to Use Cookies in PHP Web Application Basic

 How to Use Cookies in PHP Web Application Basic // Set Cookie in browser and get its value $name = 'AnilSahu'; $value =...

Monday, November 14, 2022

Useful prebuilt array Method in PHP

 Useful prebuilt array Method in PHP array( 'Search' => 'Google', 'Social' => 'Facebook',...

Nested Loop in PHP Means Loop inside Loop

 Nested Loop in PHP Means Loop inside Loop // Print 1 to 100 in table format using nested loop for ($a = 1; $a for ($b = $a; $b ...

PHP Multidimensional array and printing on table format

 PHP Multidimensional array and printing on table format // Name physics chemistry math // Anil 75 78 80 // Vijay 76 ...

Friday, November 11, 2022

How to create function and call function inside another function in PHP

 How to create function and call function inside another function in PHP A function is a block of statements that can be used repeatedly in ...

Foreach loop for Beginner Guide

  Foreach loop for Beginner Guide The foreach loop works only on arrays, and is used to loop through each key/value pair in an array. /...

For Loop in PHP For Beginner

 For Loop in PHP For Beginner The for loop - Loops through a block of code a specified number of times. The for loop is used when you know i...

PHP do while Loop for Beginner

 PHP do while Loop for Beginner The do...while loop - Loops through a block of code once, and then repeats the loop as long as the specified...

Using While Loop In PHP Easy Guide For Beginner

 Using While Loop In PHP The while loop - Loops through a block of code as long as the specified condition is true. // Print Hello Worl...

Using Switch Statement in PHP

How to Switch Statement in PHP The switch statement is used to perform different actions based on different conditions. $color = ...