“Cómo conectar el formulario a la base de datos” Código de respuesta

Cómo conectar el formulario a la base de datos

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

Cómo conectar el formulario a la base de datos

$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

Cómo conectar el formulario a la base de datos

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

Cómo conectar el formulario a la base de datos

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

Respuestas similares a “Cómo conectar el formulario a la base de datos”

Preguntas similares a “Cómo conectar el formulario a la base de datos”

Más respuestas relacionadas con “Cómo conectar el formulario a la base de datos” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código