-
Notifications
You must be signed in to change notification settings - Fork 0
/
added.php
36 lines (30 loc) · 948 Bytes
/
added.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
<!DOCTYPE html>
<html lang="en">
<?php
session_start();
$con = mysqli_connect('localhost', 'root', '');
if (empty($_SESSION['username'])) {
header('location:index.php');
}
mysqli_select_db($con, 'mms');
?>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>Add Status</title>
</head>
<body>
<div class="card">
<div class="card-header">
MMS
</div>
<div class="card-body">
<h5 class="card-title" style="text-align: center;">Add Status</h5>
</div>
</div>
<h2> USER ADDED SUCCESSFULLY </h2>
<button> <a href="admin/admins.php">Back </a> </button>
</body>
</html>