-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobilechange.php
47 lines (33 loc) · 936 Bytes
/
mobilechange.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
<html>
<head>
<title>Poodle</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php include "myprofile.php"; ?>
<style>
.main {
margin-left: 160px; /* Same as the width of the sidenav */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
</style>
</head>
<body>
<div class="main">
<?php
$servername="localhost";
$username="admin";
$pass="monarchs"; //admin password
$db="userlog";
$connection =new mysqli($servername,$username,$pass,$db);
?>
<form action="updatepwdb.php" method="post">
<table cellpadding="6" border="0" align="center">
<br><br><br><br><br><br>
<tr><th>New Mobile Number:</th><td><input type="number" name="nwmob"/></td></tr>
<tr><td></td><td><input type="submit" value="Update Mobile Number" /></td></tr>
</table>
</form>
<br><br><br><br><br><br>
</div>
</body>
</html>