일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 배너로드 치트
- Span
- SP-MGT-P
- 수소화불화탄소
- 방법
- 블랙프라이데이
- 사용법
- 가스
- 유대교의 역사
- javascript 배우기
- 가스 분석기
- 가스분석기
- 교정 방법
- 이미지의 크기
- 폭발범위
- 메뉴얼
- 교정
- JavaScript
- 용어정리
- 넷플릭스 드라마 추천
- LEL
- 미드로 영어 공부하기
- 보정 방법
- SPAN 값 변경 방법
- 보정
- Calibrtion
- HCFC
- SENKO SP-MGT-P SPAN 보정 방법
- css 독학
- 아마존
Archives
- Today
- Total
푸르생 스토리
mysql에 이미지 저장 하고 경로 불러오기 본문
728x90
반응형
SMALL
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>imageUpload</title>
</head>
<body>
<form action="imgUplodP.php" method="post" onsubmit="return sendit()">
<h2>imageUpload</h2>
<div class="content">
<div class="nav">
<ul>
<li>파일 업로드 : </li>
</ul>
</div>
<div class="nav_info">
<input type="file" name="imageUpload" id="imageUpload">
</div>
<p><button type='submit' id="reg_btn">저장</button></p>
</div>
</form>
</body>
</html>
PHP
<?php
if(isset($_POST['submit'])) {
//Process the image that is uploaded by the user
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["imageUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
if (move_uploaded_file($_FILES["imageUpload"]["tmp_name"], $target_file)) {
echo "The file ". basename( $_FILES["imageUpload"]["name"]). " has been uploaded.";
} else {
echo "Sorry, there was an error uploading your file.";
}
$image=basename( $_FILES["imageUpload"]["name"],".jpg"); // used to store the filename in a variable
//storind the data in your database
$query= "INSERT INTO items VALUES ('$id','$title','$description','$price','$value','$contact','$image')";
mysql_query($query);
require('heading.php');
echo "Your add has been submited, you will be redirected to your account page in 3 seconds....";
header( "Refresh:3; url=account.php", true, 303);
}
while($row = mysql_fetch_row($result)) {
echo "<tr>";
echo "<td><img src='uploads/$row[6].jpg' height='150px' width='300px'></td>";
echo "</tr>\n";
}
?>
728x90
반응형
LIST