-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_playlist.php
164 lines (140 loc) · 6.4 KB
/
add_playlist.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
ob_start();
session_start();
if(isset($_SESSION['user'])){
$tutor_id =$_SESSION['user'];
}else{
$tutor_id = '';
header('location:login.php');
}
include 'admin/init.php';
if(isset($_POST['submit'])){
$title = $_POST['title'];
$title = filter_var($title, FILTER_SANITIZE_STRING);
$description = $_POST['description'];
$description = filter_var($description, FILTER_SANITIZE_STRING);
$status = $_POST['status'];
$status = filter_var($status, FILTER_SANITIZE_STRING);
$image = $_FILES['image']['name'];
$image = filter_var($image, FILTER_SANITIZE_STRING);
$ext = pathinfo($image, PATHINFO_EXTENSION);
$rename = uniqid().'.'.$ext;
$image_size = $_FILES['image']['size'];
$image_tmp_name = $_FILES['image']['tmp_name'];
$image_folder = 'uploaded_files/'.$rename;
$add_playlist = $con->prepare("INSERT INTO `playlist`(user_id, title, description, image, status) VALUES(?,?,?,?,?)");
$add_playlist->execute([$tutor_id, $title, $description, $rename, $status]);
move_uploaded_file($image_tmp_name, $image_folder);
$message[] = 'new playlist created!';
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="layout/assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="layout/assets/img/favicon.png">
<title>
Play lists <?php $title="playlists"; ?>
</title>
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" />
<!-- Nucleo Icons -->
<link href="layout/assets/css/nucleo-icons.css" rel="stylesheet" />
<link href="layout/assets/css/nucleo-svg.css" rel="stylesheet" />
<!-- Font Awesome Icons -->
<script src="https://kit.fontawesome.com/42d5adcbca.js" crossorigin="anonymous"></script>
<link href="layout/assets/css/nucleo-svg.css" rel="stylesheet" />
<!-- CSS Files -->
<link id="pagestyle" href="layout/assets/css/soft-ui-dashboard.css?v=1.0.7" rel="stylesheet" />
<!-- Nepcha Analytics (nepcha.com) -->
<!-- Nepcha is a easy-to-use web analytics. No cookies and fully compliant with GDPR, CCPA and PECR. -->
<script defer data-site="YOUR_DOMAIN_HERE" src="https://api.nepcha.com/js/nepcha-analytics.js"></script>
<style>
/* Custom styles for form */
.form-container {
max-width: 500px;
margin: auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #f8f9fa;
}
.form-control {
margin-bottom: 20px;
}
.form-control label {
font-weight: bold;
}
.form-control span {
color: red;
}
.btn-primary {
width: 100%;
padding: 12px;
font-size: 16px;
}
</style>
</head>
<body class="g-sidenav-show bg-gray-100">
<?php include 'includes/template/navbar.php'?>
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg ">
<!-- Navbar -->
<nav class="navbar navbar-main navbar-expand-lg px-0 mx-4 shadow-none border-radius-xl" id="navbarBlur" navbar-scroll="true">
<div class="container-fluid py-1 px-3">
<nav aria-label="breadcrumb">
<ol class="breadcrumb bg-transparent mb-0 pb-0 pt-1 px-0 me-sm-6 me-5">
<li class="breadcrumb-item text-sm"><a class="opacity-5 text-dark" href="javascript:;">Pages</a></li>
<li class="breadcrumb-item text-sm text-dark active" aria-current="page">play Lists</li>
</ol>
<h6 class="font-weight-bolder mb-0">Play Lists</h6>
</nav>
<div class="collapse navbar-collapse mt-sm-0 mt-2 me-md-0 me-sm-4" id="navbar">
<div class="ms-md-auto pe-md-3 d-flex align-items-center">
<div class="input-group">
<span class="input-group-text text-body"><i class="fas fa-search" aria-hidden="true"></i></span>
<input type="text" class="form-control" placeholder="Type here...">
</div>
</div>
<?php include 'includes/template/Nav.php'?>
</div>
</div>
</nav>
<div class="container mt-5">
<div class="form-container">
<h2 class="text-center mb-4">Create New Playlist</h2>
<form action="" method="post" enctype="multipart/form-data">
<!-- Playlist Status -->
<div class="mb-3">
<label for="status" class="form-label">Playlist Status <span>*</span></label>
<select name="status" id="status" class="form-select" required>
<option value="" selected disabled>-- Select Status --</option>
<option value="active">Active</option>
<option value="deactive">Deactive</option>
</select>
</div>
<!-- Playlist Title -->
<div class="mb-3">
<label for="title" class="form-label">Playlist Title <span>*</span></label>
<input type="text" name="title" id="title" class="form-control" maxlength="100" required placeholder="Enter Playlist Title">
</div>
<!-- Playlist Description -->
<div class="mb-3">
<label for="description" class="form-label">Playlist Description <span>*</span></label>
<textarea name="description" id="description" class="form-control" required placeholder="Write Description" maxlength="1000" rows="5"></textarea>
</div>
<!-- Playlist Thumbnail -->
<div class="mb-3">
<label for="image" class="form-label">Playlist Thumbnail <span>*</span></label>
<input type="file" name="image" id="image" accept="image/*" class="form-control" required>
</div>
<!-- Submit Button -->
<div class="mb-3">
<input type="submit" value="Create Playlist" name="submit" class="btn btn-primary">
</div>
</form>
</div>
</div>
<?php include "includes/template/footer.php";?>
</body>