在codeigniter上有限制输入数据的功能吗?
示例:
用户输入数量'3'。
然后,他接受了这三件事的投入。他不能输入超过3个
public function ajax_add()
{
$this->_validate();
$data = array(
'nama_produk' => $this->input->post('nama_produk'),
'quantity' => $this->input->post('quantity'),
'tanggal' => $this->input->post('tanggal'),
);
$insert = $this->barangmasuk->save($data);
echo json_encode(array("status" => TRUE));
}