but here goes...
i have a c++ app that talks to a php server backend and exchanges data ... the c++ client POST's the data to various scripts on the server depending on the function reqd ... now i want to hide what script is getting called to halp make the system harder to mess with so instead of hard coding the various script urls into the client (easy to hack out) i decided to use script id's kind of thing ... then the client calls a redir script passing the reqd script id as a parameter in the POST data
all well and good
the redir script has to strip out the script id ... lookup the reqd script and pass the rest of the data along to it ... thats the bit im kind of stuck on ... yes i could use a global var or a session var but i dont want to be heaving a chunk of data around cos if we get heavy traffic it will be a bad thing
is there any way to easily pass on the POST data to the reqd script from the redir script?
thnx for reading all this rhubarb and thnx if anyone can help