Problem with passing $_GET parameters
-
Have a program written, working well, using $_GET parameters, submitted from a form, to load a query a file in SQL, displaying the results.
Currently migrating the program into the WordPress framework and am running into some strange behaviour.
Although the page loads well with no parameters, attempting to invoke the php parameters in the standard way, the page has no idea what is going on, and returns a 404 error.
URL’s sent to broswer look like
“home/program/?parameter1=1 & paraemeter2 =2…etc for up to 28 parameters”
-> 404 error.Strangely, the browser can be made to at least recognize the page by adding a ‘$’ before parameter1; however, parameter1 no longer behaves properly.
“home/program/?$parameter1=1 & paraemeter2 =2…etc”
-> parameters after the first work as expectedWhat could explain WordPress’s reluctance to interpret the code in the standard way? What effect is the “$” having?
when trying home/page?param=1 OR home/page?$param=1 a 404 is also served
The page I need help with: [log in to see the link]
- The topic ‘Problem with passing $_GET parameters’ is closed to new replies.