-
Notifications
You must be signed in to change notification settings - Fork 0
/
loginpatient_parse.php
48 lines (31 loc) · 1.22 KB
/
loginpatient_parse.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
<?php
session_start();
$_SESSION['post-data'] = $_POST;
include("db_connect.php");
if ( empty($_POST["Verzekeringsnummer"]) || empty($_POST["email"]) || empty($_POST["Geboorteplaats"]) )
{
echo "U heeft een veld niet ingevuld. Probeer het nogmaals";
header("refresh:2; url=index.php?content=login.php");
}
else
{
$query_patient = "SELECT *
FROM `patient`
WHERE `email` = '".$_POST["email"]."';";
$result_patient = mysqli_query($connection, $query_patient);
if ( mysqli_num_rows($result_patient) > 0 )
{
// Meldt de gebruiker dat hij is ingelogd redirect naar homepage developer
$record_user = mysqli_fetch_assoc($result_patient);
$_SESSION["Email"] = $record_user["Email"];
$_SESSION["Verzekeringsnummer"] = $record_user["Verzekeringsnummer"];
$_SESSION["geboorteplaats"] = $record_user["geboorteplaats"];
$_SESSION["Naam"] = $record_user["Naam"];
$_SESSION["patientdata"] = $record_user["patientdata"];
$_SESSION["adres"] = $record_user["adres"];
$_SESSION["postcode"] = $record_user["postcode"];
header("location: klanthome.php");
break;
}
}
?>