Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
546 views
in Technique[技术] by (71.8m points)

query string - How can I read a QueryString in CodeIgniter?

I know it's been asked before, but I need it for affiliate tracking...

http://www.mysite.com/controller/method/params?affiliate=123&sub_id=456

How can I get the params AND the $_GET parameters outlined in that URL?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can always get the data like this:

$this->input->get('your_get_variable', TRUE);

Hope this works!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...