i want to bind get and post data with sql function ex $db->sql("")->bind()
Your question doesn't make sense to me, could you please try and explain it further?
For example at codeigniter when i want to bind values to query $this->db->query("select * from table where id = ?",array('5'));
i want to know how to make it with datatables editor for sql injection protection
and there is secure way for using get and post request or should i use
$_GET['Param'] and $_POST['Param'] to protect from code injection
any help ?
Answers
Your question doesn't make sense to me, could you please try and explain it further?
For example at codeigniter when i want to bind values to query
$this->db->query("select * from table where id = ?",array('5'));
i want to know how to make it with datatables editor for sql injection protection
and there is secure way for using get and post request or should i use
$_GET['Param'] and $_POST['Param'] to protect from code injection
any help ?