-
Notifications
You must be signed in to change notification settings - Fork 0
/
import.php
executable file
·40 lines (38 loc) · 1.49 KB
/
import.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<form name="import" enctype="multipart/form-data" method="POST" action="import_preview.php">
<table>
<tr>
<th>Type of Import</th>
<td>
<select name="import_dest">
<option value="enrolled">Enrolled Students</option>
<option value="paid">Students that have Paid</option>
<option value="admin">Students that are on Admin Hold</option>
<option value="guest">Students that have Paid for a Guest Pass</option>
</select>
</td>
</tr>
<tr>
<th>File</th>
<td><input type="file" name="import_file"></td>
</tr>
<tr>
<th>File Type</th>
<td>
<select name="file_type">
<option value="csv">CSV</option>
<option value="xls" selected>Excel</option>
</select>
</td>
</tr>
</table>
<input name="submit" value="Begin Import" type="submit">
</form>
</body>
</html>