-
Notifications
You must be signed in to change notification settings - Fork 0
/
klantgevensaanpassen_wijzigen.php
64 lines (50 loc) · 2.07 KB
/
klantgevensaanpassen_wijzigen.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
session_start();
include("db_connect.php");
$select_user_email = ("SELECT `Email` FROM `patient` WHERE `Email` = '{$_SESSION["Email"]}'");
$negative_user_result = mysqli_query($connection, $select_user_email);
if(mysqli_num_rows($negative_user_result) < 0)
{
echo "<font color='red' font size='100px'>Er gaat iets mis.</font>";
header("refresh:4; url=klantgevensaanpassen_wijzigen.php");
exit;
}
$select_user = "SELECT * FROM patient WHERE email = '{$_SESSION["Email"]}'";
$result = mysqli_query($connection, $select_user);
$row = mysqli_fetch_assoc($result);
if(!isset($_POST["geboorteplaats"]) || trim($_POST["geboorteplaats"]) == '' OR
!isset($_POST["Naam"]) || trim($_POST["Naam"]) == '' OR
!isset($_POST["patientdata"]) || trim($_POST["patientdata"]) == '' OR
!isset($_POST["adres"]) || trim($_POST["adres"]) == '' OR
!isset($_POST["postcode"]) || trim($_POST["postcode"]) == '')
{
echo "<font color='red' font size='100px'>U heeft een of meer velden niet ingevuld. Probeer het opnieuw.</font>";
header("refresh:4; url=klantgevensaanpassen_wijzigen.php");
exit;
}
$query = "UPDATE patient
SET `geboorteplaats` = '".$_POST['geboorteplaats']."',
`Naam` = '".$_POST['Naam']."',
`patientdata` = '".$_POST['patientdata']."',
`adres` = '".$_POST['adres']."',
`postcode` = '".$_POST['postcode']."'
WHERE `Email` = '".$_SESSION['Email']."'";
$result = mysqli_query($connection, $query);
if ( $result )
{
echo "<font color='red' font size='100px'>Uw gegevens zijn succesvol gewijzigt. U wordt doorgestuurd naar de accountpagina.</font>";
header("refresh:6; url=klantgegevens.php");
}
else
{
echo "<font color='red' font size='100px'>Er is iets fout gegaan.</font>";
header("url=klantgevensaanpassen_wijzigen.php");
}
?>
<html>
<link href="datetimepicker/sample in bootstrap v2/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<br><br><br>
<footer>
<?php include 'footer.php'; ?>
</footer>
</html>