Switch statement in php language with complete example

  • 16 Jul 2023
  • 0

Switch statement is used to execute one statement from multiple conditions in PHP. It works like PHP if-else-if statement...

Getting checkbox values on submit in PHP with example

  • 16 Jul 2023
  • 0

If you have multiple options, then you want to get the checked values to store them in variable on form submit, Then you can use this technique.

How to get field name in mysqli using php with example

  • 16 Jul 2023
  • 1

Suppose, you want to show all record of the database table and you don't know about the table detail like how much column and how much rows...

How to create MySql database connection in php example

  • 16 Jul 2023
  • 0

Whenever you want to save some important data on database you must need a connection between your project to MySQL. The tutorial takes you through...

How to use session in php code - with complete example

  • 16 Jul 2023
  • 0

PHP session is used to store information in a variable temporarily to be used across multiple pages. PHP session creates unique user id for each brows...

How to create multidimensional Array in php example

  • 16 Jul 2023
  • 0

We know an array is a special variable, which can hold more than one value in one single variable. In PHP array can be used multiple types which...