You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
538 B
26 lines
538 B
<?php
|
|
session_start();
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>PHP File Upload</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
if (isset($_SESSION['message']) && $_SESSION['message'])
|
|
{
|
|
printf('<b>%s</b>', $_SESSION['message']);
|
|
unset($_SESSION['message']);
|
|
}
|
|
?>
|
|
<form method="POST" action="upload.php" enctype="multipart/form-data">
|
|
<div>
|
|
<span>Upload a File:</span>
|
|
<input type="file" name="uploadedFile" />
|
|
</div>
|
|
|
|
<input type="submit" name="uploadBtn" value="Upload" />
|
|
</form>
|
|
</body>
|
|
</html>
|