My original path in php code is
redirect('abc.php?satisfaction=5&surname=trfhtrd&given_name=tryhtr');

It can show normally in url bar on firefox and chrome. I cam get all information

But on IE url bar
It shows
abc.php?satisfaction=5®_surname=trfhtrd®_given_name=tryhtr
So I cannot get information

Why? What happen I facing?

Try with urlencode():

`redirect(urlencode('abc.php?satisfaction=5&surname=trfhtrd&given_name=tryhtr'));`

a part from that: redirect() is the CI function or is custom? If custom then post the code, bye!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.