-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia.php
49 lines (34 loc) · 938 Bytes
/
media.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
<?php
include('functions.php');
?>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<?php include('menu.php'); ?>
<div id="content">
<h2>Manage Client Media Entries</h2>
<h4>List All Entries of Type:</h4>
<form name="search_entries" action="search_entries.php" method="get">
<input type="radio" name="mediatype" value="VOD" checked>VOD Entries
<br>
<input type="radio" name="mediatype" value="live">Live Entries
<h4>Choose Client:</h4>
<!-- show list of schools in select box -->
<h6>Client:</h6>
<select name="client">
<?php
$clients = getClients();
while ($client = mysqli_fetch_array($clients, MYSQLI_ASSOC)) {
?>
<option value="<?php echo $client['clientid']; ?>"><?php echo $client['client_name']; ?></option>
<?php } ?>
</select>
<!-- end show list of schools -->
<br><br>
<button type="submit" name="" />Search By Client</button>
</form>
</div>
</body>
</html>