Insert Record in Database using PHP

Advertisements

Create Table Mysql PHP Display Record on Webpage using PHP

How to Insert Record in Database using PHP

For insert data in database using PHP first we create Html form page and get data from user, now connect database and run insert command.

index.html

Html page

<form action="insert-data.php" method="post" id="nameform">
First Name: <input type="text" name="fname"></br>
Last Name: <input type="text" name="lname"></br>
<button type="submit" form="nameform" value="submit">Submit</button>
<button type="reset" value="Reset">Reset</button>
</form>

connect-db.php

Connect to database

<?php
$servername = "localhost";
$username = "username";
$password = "password";

// Create connection
$conn = mysqli_connect($servername, $username, $password);

// Check connection
if (!$conn)
{
  die("Connection failed: " . mysqli_connect_error());
}
echo "Connected successfully";

mysqli_close($conn);  

?>

insert-data.php

Example to Insert Record in Database using PHP

<?php
include 'db-connect.php';

$f_name = $_POST["fname"];
$l_name = $_POST["fname"];

$sql = "insert into user(f_name, l_name)
      VALUES('$f_name', '$l_name'";

$result = mysql_query($sql);
if($result)
{
header("Location: add-record-successfully");
}
else {
echo mysql_error();
}

$connection->close();
?>

Create Table Mysql PHP Display Record on Webpage using PHP

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements