간단 오피스 뷰어 테스트 소스
페이지 정보
작성자 운영자쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 65회 작성일 24-07-07 23:39본문
<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_FILES['file'])) {
$uploadDir = 'uploads/';
$uploadFile = $uploadDir . basename($_FILES['file']['name']);
if (move_uploaded_file($_FILES['file']['tmp_name'], $uploadFile)) {
echo "파일이 성공적으로 업로드되었습니다.\n";
echo "<a href='viewer.php?file=" . urlencode($uploadFile) . "'>파일 보기</a>";
} else {
echo "파일 업로드에 실패하였습니다.\n";
}
}
?>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>파일 업로드</title>
</head>
<body>
<form enctype="multipart/form-data" action="" method="POST">
<input type="file" name="file" />
<input type="submit" value="업로드" />
</form>
</body>
</html>
댓글목록
등록된 댓글이 없습니다.