124 |
rodolico |
1 |
<!--
|
|
|
2 |
test.html
|
|
|
3 |
|
|
|
4 |
Copyright 2022 R. W. Rodolico <rodo@dailydata.net>
|
|
|
5 |
|
|
|
6 |
This program is free software; you can redistribute it and/or modify
|
|
|
7 |
it under the terms of the GNU General Public License as published by
|
|
|
8 |
the Free Software Foundation; either version 2 of the License, or
|
|
|
9 |
(at your option) any later version.
|
|
|
10 |
|
|
|
11 |
This program is distributed in the hope that it will be useful,
|
|
|
12 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
13 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
14 |
GNU General Public License for more details.
|
|
|
15 |
|
|
|
16 |
You should have received a copy of the GNU General Public License
|
|
|
17 |
along with this program; if not, write to the Free Software
|
|
|
18 |
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
19 |
MA 02110-1301, USA.
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
-->
|
|
|
23 |
|
|
|
24 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
25 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
|
26 |
|
|
|
27 |
<head>
|
|
|
28 |
<title>Test File Upload</title>
|
|
|
29 |
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
|
|
|
30 |
<meta name="generator" content="Geany 1.33" />
|
|
|
31 |
</head>
|
|
|
32 |
|
|
|
33 |
<body>
|
|
|
34 |
<form action="upload_file.php">
|
|
|
35 |
<label for="fname">First name:</label><br>
|
|
|
36 |
<input type="text" id="fname" name="fname"><br>
|
|
|
37 |
<label for="lname">Last name:</label><br>
|
|
|
38 |
<input type="text" id="lname" name="lname">
|
|
|
39 |
<label for="file">File:</label><br>
|
|
|
40 |
<input id="file" type="file" name="fileToUpload">
|
|
|
41 |
<input type="submit" value="Submit">
|
|
|
42 |
</form>
|
|
|
43 |
</body>
|
|
|
44 |
|
|
|
45 |
</html>
|