我认为这只是我犯的一个简单错误,但直到现在我仍然无法解决为什么我的最后一个 else if {} 语句在满足条件时没有执行。
这是我的表格。我有 3 个表单元素作为用户输入值的选项。他们可以选择上传文本、照片或电影。这是我的PHP:
if ( $this->input->post('text') !== '') {
//this executes fine when it meets the condition
} else if ( $this->input->post('photo') !== '' ) {
// this also works fine
} else if ( $this->input->post('video') !== '' ) {
/* however, I can't get to this condition when
the user chooses to upload the movie.
It always go the second condition.
*/
}
编辑:
这是我的看法:
<form action="<?php echo base_url()?>action/post" method="post" enctype="multipart/form-data">
<ul class="nav nav-tabs">
<li class="active">
<a href="#status" data-toggle="tab">Update Status</a>
</li>
<li>
<a href="#photos" data-toggle="tab">Post Photos</a>
</li>
<li>
<a href="#videos" data-toggle="tab">Post Videos</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="status">
<textarea name="text"></textarea>
</div>
<div class="tab-pane" id="photos">
<input type="file" name="photo" class="input" />
<input type="text" name="photos-detail" placeholder="description" />
</div>
<div class="tab-pane" id="videos">
<input type="file" name="video" class="input" />
<input type="text" name="videos-detail" placeholder="description" />
</div>
</div>
<button type="submit" class="btn btn-primary" name="post">Post</button>
</form>
任何想法都会非常感激。