Welcome Guest, Not a member yet? Register   Sign In
SOLVED:I need my URL to handle "=" , Help!
#1

[eluser]pokerking[/eluser]
Ok i am trying to pass some strings in URL

http://localhost/welcome/getPerson/fname='alex'

i want to get all person with alex with above syntax.

My $_GET array only show up to welcome/getperson/fname

I want fname='alex' as single string.

How do i get it to work?

Thanks in advance.
#2

[eluser]pokerking[/eluser]
I solved it by allowing & as permissable character

$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-=&';

Then start the string with &
http://localhost/welcome/getPerson/filte...ame=yahoo/

So i get filter=&fname=alex&lname=yahoo

I parse them for further processing.

Also it may also available in $_GET i think.

$name=$_Get['name'];

This way i have segmentation for methods and query strings for some data passing or i have to write many segmentation.
http://localhost/welcome/getPerson/outpu.../&fname=ss aa&op=AND&lname=john/sort/fname/seq/asc/groupby/address




Theme © iAndrew 2016 - Forum software by © MyBB