Hello,
Ref this thread: http://ellislab.com/forums/viewthread/180565/
I have a url: directory/suggest_names?query=wy
suggest_names is a blind template which just feeds data back to an auto complete list via ajax. I did it this way so I could use the API
I read the value with:
$q = $IN->GBL('query', 'GET');Works like a charm in EE1.7!!
In EE2.1.3, It will not read using:
$q = $this->EE->input->get('query');The profiler shows:
$_GET[‘directory/suggest_names’] with no value.
I set enable_query_strings to true and tried setting uri_protocol to PATH_INFO with no luck.
Changing uri_protocol only forced the system to kick everything to the home page.
Any ideas?
Many thanks.
Regards,
Jim