rawurlencode() and urlencode() not working in CodeIgniter

Posted by Keith Chason on Stack Overflow See other posts from Stack Overflow or by Keith Chason
Published on 2011-11-17T01:01:41Z Indexed on 2011/11/17 1:50 UTC
Read the original article Hit count: 214

Filed under:
|
|

I am trying to encode a string into a safe url for generic purposes, and neither rawurlencode() nor urlencode() work when using CodeIgniter. I have used them and they work pefectly fine with straight PHP, but for whatever reason, it doesn't work. I haven't been able to find any others with this problem and thus no solution.

Code:

<a href="/search/degree/<?=rawurlencode($row->degree)?>" class="element_link"><?=$row->degree?></a>

© Stack Overflow or respective owner

Related posts about php

Related posts about codeigniter