-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-puh.php
66 lines (50 loc) · 1.52 KB
/
update-puh.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
65
66
<?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 puhelinnumero</h1>
<div class="input group">
<input type="text" class="input-field" name="new" placeholder="Uusi puhelinnumero">
</div>
<div class="submit">
<input type="submit" name="update" value="Lähetä" id="form_button" />
</div>
<!-- <input type="submit" name="update"> Update</button>-->
</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(($old == $row["password"]) && ($new == $retype)){
if($new){
mysqli_query($con,"UPDATE Kayttaja SET puhelin='$new' WHERE email='$email'");
echo "<script>alert('Puhelinnumero vaihdettu!'); window.location='profiili.php'</script>";
} else{
echo "<script>alert('Virhe'); window.location='update-puh.php'</script>";
}
}
}
?>
</body>
</html>