質問編集履歴

4

画像表示追加

2019/11/07 21:19

投稿

Ms.yy
Ms.yy

スコア83

test CHANGED
File without changes
test CHANGED
@@ -188,6 +188,80 @@
188
188
 
189
189
 
190
190
 
191
+
192
+
193
+ ###追記(画像表示可)
194
+
195
+ session_startを追記したら無事に表示されるようになりました。
196
+
197
+
198
+
199
+ ```ここに言語を入力
200
+
201
+
202
+
203
+ <?php
204
+
205
+ session_start();
206
+
207
+
208
+
209
+ chmod("image/",0666);
210
+
211
+
212
+
213
+ $image=date('YmdHis').$_FILES['image']['name'];
214
+
215
+ move_uploaded_file($_FILES['image']['tmp_name'],
216
+
217
+ 'image/'.$image);
218
+
219
+
220
+
221
+ $_SESSION['join']=$_POST;
222
+
223
+ $_SESSION['join']['image']=$image;
224
+
225
+
226
+
227
+
228
+
229
+ <form action="" method="post" enctype="multipart/form-data">
230
+
231
+
232
+
233
+ <input type="file" name="image" >
234
+
235
+ <input type="submit" value="確認" >
236
+
237
+ </form>
238
+
239
+
240
+
241
+ <?php if($_SESSION['join']['image'] !==''):?>
242
+
243
+
244
+
245
+ <img src="image/<?php print($_SESSION['join']['image'])?>">
246
+
247
+
248
+
249
+ <?php endif;?>
250
+
251
+
252
+
253
+
254
+
255
+
256
+
257
+
258
+
259
+ ?>
260
+
261
+ ```
262
+
263
+
264
+
191
265
  imageフォルダアクセス権
192
266
 
193
267
  自分:読み/書き

3

chmod()→move_uploaded_file()エラー追加

2019/11/07 21:19

投稿

Ms.yy
Ms.yy

スコア83

test CHANGED
File without changes
test CHANGED
@@ -144,6 +144,32 @@
144
144
 
145
145
 
146
146
 
147
+
148
+
149
+
150
+
151
+ ###chmod()→move_uploaded_file()でのエラー
152
+
153
+ ```ここに言語を入力
154
+
155
+ Warning: chmod(): Operation not permitted in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 51
156
+
157
+
158
+
159
+ Warning: move_uploaded_file(image/20191102122837スクリーンショット 2019-11-01 21.14.10.png): failed to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 55
160
+
161
+
162
+
163
+ Warning: move_uploaded_file(): Unable to move '/Applications/XAMPP/xamppfiles/temp/phpBecTWu' to 'image/20191102122837スクリーンショット 2019-11-01 21.14.10.png' in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 55
164
+
165
+ ```
166
+
167
+
168
+
169
+
170
+
171
+
172
+
147
173
  ###ディレクトリ
148
174
 
149
175
  ```ここに言語を入力

2

ディレクトリ項目にディレクトリを表す画像を移動した。

2019/11/02 03:36

投稿

Ms.yy
Ms.yy

スコア83

test CHANGED
File without changes
test CHANGED
@@ -90,7 +90,7 @@
90
90
 
91
91
 
92
92
 
93
- #
93
+
94
94
 
95
95
 
96
96
 
@@ -152,13 +152,13 @@
152
152
 
153
153
  ```
154
154
 
155
-
155
+ ![イメージ説明](e84943b1f86ede1f59aac53581de253b.png)
156
156
 
157
157
 
158
158
 
159
159
  ### 補足情報(FW/ツールのバージョンなど)
160
160
 
161
- ![イメージ説明](e84943b1f86ede1f59aac53581de253b.png)
161
+
162
162
 
163
163
 
164
164
 

1

相対パスエラーとディレクトリ追記

2019/11/01 23:51

投稿

Ms.yy
Ms.yy

スコア83

test CHANGED
File without changes
test CHANGED
@@ -33,6 +33,12 @@
33
33
 
34
34
 
35
35
  Warning: chmod(): Operation not permitted in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 56
36
+
37
+
38
+
39
+
40
+
41
+
36
42
 
37
43
  ```
38
44
 
@@ -118,6 +124,36 @@
118
124
 
119
125
 
120
126
 
127
+ ###相対パスのエラー
128
+
129
+ ```ここに言語を入力
130
+
131
+ Warning: move_uploaded_file(image20191101232932スクリーンショット 2019-10-31 21.46.25.png): failed to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 66
132
+
133
+
134
+
135
+ Warning: move_uploaded_file(): Unable to move '/Applications/XAMPP/xamppfiles/temp/phpl1b1sO' to 'image20191101232932スクリーンショット 2019-10-31 21.46.25.png' in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 66
136
+
137
+
138
+
139
+ Warning: chmod(): Operation not permitted in /Applications/XAMPP/xamppfiles/htdocs/calendar_php/folio/imageout.php on line 68
140
+
141
+ ```
142
+
143
+
144
+
145
+
146
+
147
+ ###ディレクトリ
148
+
149
+ ```ここに言語を入力
150
+
151
+ /Applications/XAMPP/htdocs/calendar_php/folio/image
152
+
153
+ ```
154
+
155
+
156
+
121
157
 
122
158
 
123
159
  ### 補足情報(FW/ツールのバージョンなど)