Amit Pandey's post page #15

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

How to combine or merge array in php - with example

  • 16 Jul 2023
  • 0

Beginners have lots of confusion between array combine and array merge in PHP. So I just go through with this post to introduce the difference between...

How to connect to MySQL database using PHP Example

  • 16 Jul 2023
  • 0

Let's start with PHP and MySQ. The first thing to do is connect to the database MySQL, and try to get information on database tables on the page.

How to start coding in PHP with 'Hello world' - example

  • 16 Jul 2023
  • 0

PHP is one of the most popular open-source and server-side scripting language. PHP is a powerful tool for making dynamic, interactive websites...

Try Exception handling in php with complete example

  • 16 Jul 2023
  • 0

Exception handling is used to change the normal flow of the code execution if a specified error condition occurs. This condition is called an exceptio...

Remove a specific element from an array PHP : Example

  • 16 Jul 2023
  • 0

In this tutorial, you will learn two PHP unset() and array_search() methods to remove specific array elements. Removing items from your array by value

Login with Facebook API Using PHP | Login API Integration

  • 16 Jul 2023
  • 0

Hmm, If your website has a customer base section or any kind of customer interaction activity, then you must need to add login with Facebook. In this...