-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_edit_logged_profile.php
37 lines (31 loc) · 1.18 KB
/
process_edit_logged_profile.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
<?php
session_start();
require_once ('MysqliDb.php');
$db = new MysqliDb ('localhost', 'root', '', 'perfectmatch');
$msg = "";
if (isset($_POST['upload'])) {
$ava = $_SESSION['id_login'];
$data = Array (
'primeiro_nome' => $_POST['primeironome'],
'ultimo_nome' => $_POST['ultimonome'],
'genero' => $_POST['genero'],
'data_nascimento' => $_POST['datanascimento'],
'orientação' => $_POST['orientacao'],
'escolaridade' => $_POST['escolaridade'],
'email' => $_POST['email'],
'morada' => $_POST['morada'],
'codigo_postal' => $_POST['codigopostal'],
'distrito' => $_POST['distrito'],
'concelho' => $_POST['concelho'],
'freguesia' => $_POST['freguesia'],
'descrição' => $_POST['descricao'],
'instagram' => $_POST['instagram'],
'facebook' => $_POST['facebook'],
'skype' => $_POST['skype'],
);
$db->where ('id_login', $ava);
$db->update ('perfis', $data);
header("Location: mainPage.php");
}
header("Location: mainPage.php");
?>