-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditar.php
26 lines (24 loc) · 836 Bytes
/
editar.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
<?php
session_start();
include_once('conexion.php');
if (isset($_POST['edit'])) {
$database = new ConectarDB();
$db = $database-> open();
try {
$id = $_GET['id'];
$nombrec=$_POST['nombrecontacto'];
$telefonoc=$_POST['celular'];
$correoc=$_POST['email'];
$direccionc=$_POST['direccion'];
$sql= "UPDATE personas SET Nombre = '$nombrec', Telefono = '$telefonoc', Correo = '$correoc', Direccion = '$direccionc' WHERE idPersona = '$id'";
$_SESSION['message']=($db -> exec($sql)) ? 'Contacto Actualizado' : 'ERROR, no se pudo actualizar el contacto';
} catch (PDOException $e) {
$_SESSION['message']= $e->getMessage();
}
$database->close();
}
else {
$_SESSION['message']= 'Llene el formulario';
}
header('location: dashboard.php');
?>