我選擇了多個圖像並在div框中顯示預覽。當我點擊保存按鈕時,我想在PHP中使用循環獲取圖像的信息。在PHP中使用循環獲取圖像
我嘗試回顯image_path用於測試目的,但它沒有顯示任何輸出。
HTML表單
<form id="photo-event-form" name="event-photo-gallery-form" class="form-horizontal" method="post" role="form" enctype="multipart/form-data">
<fieldset>
<div class="control-group">
<label class="control-label" for="event_date">Event Photo</label>
<div class="controls">
: <input type="file" class="span3" id="pg_album" name="pg_album" multiple />
<div id="form_button_div" class="form_button_div">
<button id="test" name="pg_Save" type="submit" class="btn btn-primary">Save</button>
<button class="btn">Cancel</button>
</div>
</fieldset>
</form>
PHP保存提交
if (isset($_POST['pg_Save'])) {
$image_path = $_FILES['pg_album'];
$i = 0;
foreach ($Contents as $image_path) {
$i++;
echo $image_path; //display image file path
}
}
?>
'$ Contents'從哪裏來? –
@scrowler對不起,這個解決方案我參考了其他問題的答案。我認爲這是一個代表$ image_path的變量。 – user3663143