6

我正在使用 CodeIgniter,并且我有一个带有复选框的表单,允许用户检查和删除他们上传的照片。
在我的控制器中,我if(isset($checked) == 1)用来检查用户是否要删除照片。
$photo_to_table将设置为空并传递$this->tank_auth->update_user()给以执行数据库更新,并将照片字段设置为表中的空。否则,它将保持同一张照片。

但是在我的代码中,无论我是否检查,当我单击UPDATE按钮时,它会不断删除照片,我想知道为什么会这样?

有人可以通过我的代码并给出建议吗?

控制器:

$user_id = $this->session->userdata('user_id');
$profile = $this->users->get_profile_by_id($user_id);

if(!empty($_FILES['photo']['name'])) 
{
    //image upload process
}
else
{
    $checked = $this->input->post('remove');
    if(isset($checked) == 1)
        {
            $photo_to_table = '';
            // here will do remove process to delete file in directory
        }
    else
    {
        $photo_to_table = $profile->photo;
    }
}

    if($this->form_validation->run()) { // validation ok
    if(!is_null($data = $this->tank_auth->update_user(
        $this->form_validation->set_value('name'),
        $this->form_validation->set_value('country'),
        $this->form_validation->set_value('website'),
        $photo_to_table
        ))) 
    { 
        // success
        $this->session->set_flashdata('msg', 'Profile has been updated');
        redirect(current_url());
    }
}

看法:

<?php echo form_open_multipart($this->uri->uri_string()); ?>
<table border="0">

<?php
if(!empty($uphoto)){
?>
    <tr>
        <td>
            <div>
                <img src="<?php echo base_url().$userpath.$uphoto; ?>" />
           </div>

           <div>
               <input id="remove" type="checkbox" name="remove">
               <label for="remove">Remove photo</label>
           </div>
       </td>
   </tr>
<?php
}
?>

谢谢。

4

5 回答 5

8

你需要在这里做的是改变这条线......

if(isset($checked) == 1){

if((int) $checked == 1){

原因是变量 $checked 无论它的值是否为 1 都会被设置。如果未在 POST 数据中设置,$checked = $this->input->post('remove');将返回 NULL 。'remove'

于 2013-09-25T06:47:27.277 回答
3

请在您的复选框中写下正确的值:-

   <input id="remove" type="checkbox" name="remove">

写一些值然后检查它:-

例如:

  <input id="remove" type="checkbox" name="remove" value="1">

在 php 中:-

   if($checked == 1) {
      // do whatever u want
   }
于 2013-09-25T06:39:03.830 回答
1

消除isset

这是因为默认情况下,在您的 CI 控制器中,您使用

$checked = $this->input->post('remove');

是否有值你的变量现在是否存在..

于 2013-09-25T06:53:27.120 回答
1

尝试:

<input id="remove" type="checkbox" name="remove" value="1">
于 2013-09-25T06:39:53.880 回答
0

如果有帮助,请使用它。

$checked = (isset($_POST['checkbox']))?true:false;
于 2018-09-04T09:27:15.727 回答