有人可以幫助我這個if語句嗎? 我的表單每次出現我加載頁面,但在我提交表單後消失! 也許這是是「endif」語法混淆了我,但我不能讓這個得當... 這裏是代碼:幫助一個PHP語句
<?php
if ($this->input->post('submit') && $this->input->post('categories')):
foreach($tagedImages as $image):
?>
<div class="thumb">
<?php echo'<a href="/toKoritsi/uploads/'.$image.'"/> <img src="/toKoritsi/uploads/thumbs/'.$image.'"/></a>' ?>
</div>
<?php
endforeach;
elseif(isset($photosQuery) && count($photosQuery)):
foreach($photosQuery->result_array() as $photo):
?>
<div class="thumb">
<?php echo'<a href="/toKoritsi/uploads/'.$photo['name'].'"/> <img src="/toKoritsi/uploads/thumbs/'.$photo['name'].'"/></a>' ?>
</div>
<?php
endforeach;
endif;
$options = array(
'bracelet' => 'Bracelets',
'ring' => 'Rings',
'bag' => 'Bags',
'earing' => 'Earings'
);
echo form_open("toKoritsi/gallery");
echo form_dropdown('categories', $options, 'bracelet');
echo form_submit('submit', 'Choose');
echo form_close();
?>
在此先感謝!
AAAGH !!我的眼睛! – AlexanderMP 2010-09-08 15:35:04
爲什麼使用foreach和if語句的替代語法?請使用大括號。 – zaf 2010-09-08 15:41:44
我試圖格式化它,但放棄了。這不可能。 – 2010-09-08 15:44:58