0% found this document useful (0 votes)
17 views9 pages

Step 1

Uploaded by

rashmimaruthi2
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views9 pages

Step 1

Uploaded by

rashmimaruthi2
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 9

Step 1: Connection with Database

This is dbConn.php file which is used to connect the database.

This dbConn.php file will use everywhere, where you want to perform a task with the database.

Here it is connected with the local database and check database connected or not.

dbConn.php

<?php

$db = mysqli_connect("localhost","root","","testDB");

if(!$db)

die("Connection failed: " . mysqli_connect_error());

?>
edu-community

edu-community

Enter Technology, Category or Keyword

Home Community Categories Database How to send data to my database from html and css...

How to send data to my database from html and css Contact Us Form

votes

html css php mysql linux-database linux database

Aug 4, 2020 in Database by Sign

• 120 points • 25,530 views

2 answers to this question.

votes

Hi, @Sign

You need to follow few steps regarding your query:

1. Firstly, install a virtual server on your computer (eg Xampp, Wamp).

Xampp is a free and open-source cross-platform web server solution stack package developed by Apache
Friends, consisting mainly of the Apache HTTP Server, MySQL database, and interpreters for scripts
written in the PHP and Perl programming languages.
2. Next, we will require an editor where the HTML code has to be written. You can use any editor (such
as Notepad++, Adobe Dreamweaver, NetBeans, etc). Here we will use Notepad ++.

3. Open the Notepad++ text editor and write the HTML code for designing the HTML Sign Up page. We
can use various HTML tags to design the page. You can include the fields according to your convenience.

Have a view of the code written in notepad++,

<html>

<head>

<title>Registration Form</title>

</head>

<body>

<link href = "registration.css" type = "text/css" rel = "stylesheet" />

<h2>Sign Up</h2>

<form name = "form1" action="modified.php" method = "post" enctype = "multipart/form-data" >

<div class = "container">


<div class = "form_group">

<label>First Name:</label>

<input type = "text" name = "fname" value = "" required/>

</div>

<div class = "form_group">

<label>Middle Name:</label>

<input type = "text" name = "mname" value = "" required />

</div>

<div class = "form_group">

<label>Last Name:</label>

<input type = "text" name = "lname" value = "" required/>

</div>

<div class = "form_group">


<label>Password:</label>

<input type = "password" name = "pwd" value = "" required/>

</div>

</div>

</form>

</body>

</html>

You can refer to this https://www.c-sharpcorner.com/UploadFile/52bd60/create-an-html-form-and-


insert-data-into-database162/ for more information.

answered Aug 4, 2020 by Rashmi

edited Aug 4, 2020

votes

Hello @Sign,
It is simple to create contact form to send email or any other information and storing in mysql database.

Using INSERT INTO statement you can insert new data into a database table.

See the example below:

Output:

Step 1: Connection with Database

This is dbConn.php file which is used to connect the database.

This dbConn.php file will use everywhere, where you want to perform a task with the database.

Here it is connected with the local database and check database connected or not.

dbConn.php

<?php

$db = mysqli_connect("localhost","root","","testDB");
if(!$db)

die("Connection failed: " . mysqli_connect_error());

?>

Step 2: Creating HTML form and inserting data

Here's a simple HTML form which is index.php file. It has two text input and a submit button.

The INSERT INTO statement is used to add new data into the database. This insert query will execute
passing through to the PHP mysqli_query() function to insert new data.

And also created a simple HTML form which has two input text and a submit button which is used to
take data from users.

In the index.php file the dbConn.php file includes for connecting with the database and insert new data.
The form has two field fullname and age which are get data from users and store into the database.

In this example the PHP code and the HTML form coded in the single page. The PHP script embedded
with the HTML page.

index.php

<!DOCTYPE html>

<html>
<head>

<title>Add Records in Database</title>

</head>

<body>

<?php

include "dbConn.php"; // Using database connection file here

if(isset($_POST['submit']))

$fullname = $_POST['fullname'];

$age = $_POST['age'];

$insert = mysqli_query($db,"INSERT INTO `tblemp`(`fullname`, `age`) VALUES ('$fullname','$age')");

if(!$insert)

echo mysqli_error();

else

echo "Records added successfully.";

}
mysqli_close($db); // Close connection

?>

<h3>Fill the Form</h3>

<form method="POST">

Full Name : <input type="text" name="fullname" placeholder="Enter Full Name" Required>

<br/>

Age : <input type="text" name="age" placeholder="Enter Age" Required>

<br/>

<input type="submit" name="submit" value="Submit">

</form>

</body>

</html>

You might also like