如何从我的数据库中删除逗号?
我需要根据数据删除它们。所以我有这个数据
Product 1,Product 2,,,,, - 我需要删除每个逗号
所以,我需要删除每个逗号。这是我的观点
<?php echo form_open('subjects/remove_core'); ?>
<?php $core_subjs = explode(',', $subjects['core_subjects']); ?>
<?php foreach($core_subjs as $key => $subject): ?>
<input type="hidden" name="remove_core" class="form-control" value="<?php echo $subjects['core_subjects'].'' ?>" /><br>
<input type="text" name="coresubjs[]" class="form-control" value="<?php echo $subject ?>" /><br>
<button type="submit" class="btn btn-success btn-sm">Save</button>
<?php endforeach ?>
</form>
我的控制器
public function remove_core(){
$this->subject_model->remove_core();
redirect('subjects/edit/'.$_SESSION['editID']);
}
我的模型 - 所以在这里我不确定我是否做对了,因为结果不正确。
public function remove_core(){
$data = array(
'core_subjects' => " "
);
$this->db->where('id', $this->input->post('coresubjID'));
return $this->db->update('subjects', $data);
}
我如何爆破数据
public function update_core(){
$data = array(
'core_subjects' => implode(',',$this->input->post('coresubjs[]'))
);
$this->db->where('id', $this->input->post('coresubjID'));
return $this->db->update('subjects', $data);
}
精慕HU
喵喵时光机