@mallory_cormier
To encrypt URL parameters in CodeIgniter, you can use the Encryption library provided by CodeIgniter. Here is a step-by-step guide on how to encrypt URL parameters in CodeIgniter:
$this->load->library('encryption');
$encrypted_param = $this->encryption->encrypt($param);
echo base_url('controller/method/' . $encrypted_param);
$decrypted_param = $this->encryption->decrypt($this->uri->segment(3));
By following these steps, you can encrypt and decrypt URL parameters in CodeIgniter to securely pass sensitive information in the URLs.