-
Notifications
You must be signed in to change notification settings - Fork 0
/
insertardatos,php.php
29 lines (25 loc) · 1003 Bytes
/
insertardatos,php.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
// Conexion con la base de datos
header("Content-type:text/html;charset=utf-8");
$enlace = mysqli_connect("localhost", "root", "","contacto");
// ver: http://php.net/manual/es/function.mysql-connect.php
if (!$enlace) {
echo "Error: No se pudo conectar a MySQL." . PHP_EOL;
echo "error de depuración: " . mysqli_connect_error() . PHP_EOL;
echo "error de depuración: " . mysqli_connect_error() . PHP_EOL;
}
else
{
//añadir datos a base de datos
$query = "INSERT INTO datos(nombre,email,mensaje)
VALUES ('pepsi','pepsi@live.com','hola, me encanta tu pagina')";
mysqli_query($enlace,$query);
$query = "SELECT * FROM datos";
if ($result = mysqli_query($enlace,$query))
{
$fila = mysqli_fetch_array($result);
echo "Tu nombre es: ".$fila['nombre']." tu correo es: ".$fila['email']." y tu mensaje es: ".$fila['mensaje'];
}
}
mysqli_close($enlace);
?>