Uploading a file fails under WordPress
- by Ash
I'm using WordPress and I'm following W3's guide for uploading a file:
HTML code:
<html>
<body>
<form action="upload_file.php" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit"…