“cara menghubungkan formulir ke database” Kode Jawaban

cara menghubungkan formulir ke database

<?php
// database connection code
// $con = mysqli_connect('localhost', 'database_user', 'database_password','database');

$con = mysqli_connect('localhost', 'root', '','db_contact');

// get the post records
$txtName = $_POST['txtName'];
$txtEmail = $_POST['txtEmail'];
$txtPhone = $_POST['txtPhone'];
$txtMessage = $_POST['txtMessage'];

// database insert SQL code
$sql = "INSERT INTO `tbl_contact` (`Id`, `fldName`, `fldEmail`, `fldPhone`, `fldMessage`) VALUES ('0', '$txtName', '$txtEmail', '$txtPhone', '$txtMessage')";

// insert in database 
$rs = mysqli_query($con, $sql);

if($rs)
{
	echo "Contact Records Inserted";
}

?>
Manu_Gandanga

cara menghubungkan formulir ke database

$con = mysqli_connect('localhost', 'root', '',’db_contact’);
The “db_contact” is our database name that we created before.
After connection database you need to take post variable from the form. See the below code
$txtName = $_POST['txtName'];
$txtEmail = $_POST['txtEmail'];
$txtPhone = $_POST['txtPhone'];
$txtMessage = $_POST['txtMessage'];
Manu_Gandanga

cara menghubungkan formulir ke database

$rs = mysqli_query($con, $sql);
Manu_Gandanga

cara menghubungkan formulir ke database

$sql = "INSERT INTO `tbl_contact` (`Id`, `fldName`, `fldEmail`, `fldPhone`, `fldMessage`) VALUES ('0', '$txtName', '$txtEmail', '$txtPhone', '$txtMessage');"
Manu_Gandanga

Jawaban yang mirip dengan “cara menghubungkan formulir ke database”

Pertanyaan yang mirip dengan “cara menghubungkan formulir ke database”

Lebih banyak jawaban terkait untuk “cara menghubungkan formulir ke database” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya