-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsertar.php
39 lines (26 loc) · 1.02 KB
/
insertar.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
30
31
32
33
34
35
36
37
38
39
<?php
include("conexion.php");
if (isset($_POST['guardar_registro']) and $_POST['nombre'] != "" and $_POST['correo'] != "" and $_POST['telefono'] != "" and $_POST['ciudad'] != "" and $_POST['pelicula'] != ""){
#definir datos para mysql
$correo=$_POST['correo'];
$nombre=$_POST['nombre'];
$telefono=$_POST['telefono'];
$ciudad=$_POST['ciudad'];
$pelicula=$_POST['pelicula'];
#insertando datos
$query="INSERT INTO registros(correo, nombre, telefono, ciudad, pelicula) VALUES ('$correo','$nombre','$telefono','$ciudad','$pelicula')";
#verificar si guardo
$comprobar = $conn->query($query);
if($comprobar){
printf("<script type='text/javascript'>alert('REGISTRO EXITOSO *BIENVENIDO*'); </script>");
printf("<script> window.location='login.php';</script>");
echo "correcto sql";
}
else{
echo "error de insertar";
}
}else{
printf("<script type='text/javascript'>alert('X INGRESE LOS DATOS COMPLETOS X'); </script>");
#printf("<script> window.location='Formulario.html';</script>");
}
?>