PHP 개발 프런트엔드 업로...LOGIN

PHP 개발 프런트엔드 업로드 양식

먼저 양식 코드를 게시하세요.

<html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no" />
<body>
<form action="upload.php" method="post"  enctype="multipart/form-data">
    <label for="file">文件名:</label>
    <input type="file" name="file" id="file" />
    <br />
    <input type="submit" name="submit" value="上传" />
</form>
</body>
</html>

이것은 실제로 간단한 양식이지만 enctype="multipart/form-data"라는 점에 주목할 가치가 있습니다. enctype 속성은 양식을 제출할 때 사용할 콘텐츠 유형을 지정합니다. enctype=" multipart/form-data"는 바이너리 데이터를 업로드하는 것이며 양식의 입력 값은 바이너리로 전달됩니다. 이는 업로드 기능 형태에서 가장 중요한 속성이므로 주의 깊게 살펴보세요.

또 주목해야 할 점은 action="upload.php"와 method="post"입니다. 업로드 중이므로 업로드할 수 있는 곳과 업로드 방법이 나옵니다. action="upload.php" 속성은 양식 콘텐츠가 전송되는 위치입니다.

method="post"는 데이터를 전송하는 방법입니다.

양식 페이지는 여전히 매우 간단하지만, 깊이 기억할 수 있도록 직접 시도해 보아야 합니다.

다음 섹션
<html> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="format-detection" content="telephone=no" /> <body> <form action="upload.php" method="post" enctype="multipart/form-data"> <label for="file">文件名:</label> <input type="file" name="file" id="file" /> <br /> <input type="submit" name="submit" value="上传" /> </form> </body> </html>
코스웨어