Category: PHP Tutorials

Multiple Submit Button in a Single form with PHP

Do you know how to use two or more submit button in a single <form> ?

This is a critical problem while doing some professional websites!. You may face this situation in a project that needed two or multiple submit …

How to create database and Tables in MySQL

Are you a PHP Programmer?. New Learner?. Then this is the correct place to learn about PHP and MySQL things.

In this post, I’m going to explain how to create a Database and Tables respectively.

1. Most of us are …

How to connect to the mysql database in php?

How to connect to the mysql database in php?

This question is often asked by the new PHP Developer who is trying to learn PHP themselves.

Here’s the syntax:

<?php

//connect to the db
$mysqli = new mysqli("hostname","db_username","db_password","db_name");

// Check connection
if ($mysqli->connect_errno) {
  echo "Failed to connect: " 
Theme: Overlay by Kaira
Agurchand