Using ColdFusion session variables in PHP -


i have coldfusion website running login/register modules. want use coldfusion session in php. can achieved?

as mentioned in comments, no it's not possible. cf , php cannot share in memory sessions variables. however, there other alternatives such using cookies.

i used approach once because client wanted share sessions php forum software. grabbed using cookies, finding cookies being set ie <cfdump var="#cookies#">. converted cookies sessions variables. (if need other way around, try doing in reverse.)

another possibility sending data securely using encrypted url variables. need know more goal. can explain doing?


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -