-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-email.php
63 lines (49 loc) · 1.41 KB
/
update-email.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
<?php
require('db.php');
session_start();
$products = $_SESSION['products'];
$email = $_SESSION["email"];
$kayttajaID = $_SESSION["kayttajaID"];
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Profiili</title>
<link rel="stylesheet" href="style.css"/>
<script src="https://kit.fontawesome.com/f17e988409.js" crossorigin="anonymous"></script>
</head>
<body>
<?php
include('header.php');
?>
<div class="logo">
<img src="images/pizzaa.jpg" alt="">
</div>
<form class="form-box" action="" method="post">
<h1 id="title">Vaihda email</h1>
<div class="input group">
<input type="email" class="input-field" name="new" placeholder="Uusi sähköpostiosoite">
</div>
<div class="submit">
<input type="submit" name="update" value="Lähetä" id="form_button" />
</div>
</form>
<?php
if(isset($_POST['update'])){
$new = $_POST['new'];
if(count($_POST)>0) {
$result = mysqli_query($con,"SELECT * FROM Kayttaja WHERE email='$email'");
$row=mysqli_fetch_array($result);
if($new){
mysqli_query($con,"UPDATE Kayttaja SET email='$new' WHERE email='$email'");
echo "<script>alert('Sähköpostiosoite vaihdettu!'); window.location='login.php'</script>";
session_destroy();
} else{
echo "<script>alert('Virhe'); window.location='update-email.php'</script>";
}
}
}
?>
</body>
</html>