Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 1234ru/694ded091852f35d315c45e682b82572 to your computer and use it in GitHub Desktop.
Save 1234ru/694ded091852f35d315c45e682b82572 to your computer and use it in GitHub Desktop.

Простейший пример:

<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <title>Тест загрузки файла</title>
</head>
<body>
    <form method="post" action="upload.php" enctype="multipart/form-data">
        <input type="file" name="myfile">
        <button>Загрузить</button>
    </form>
</body>
</html>

Рядом положить файл upload.php вот с таким содержимым:

<?php
echo '<pre>' . print_r($_FILES, 1) . '</pre>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment