I have a question.
-
It is possible to pass variable to a new page to a new page… without method
GET. But it’s visible. -
Is it possible to pass variable to a new page to a new page… with method
POSTwithout a form ? -
Is it possible to get variable to a new page with
ajax?
I need to pass ID from a page to another page to another page… without that the visitor sees the variable in URL.
EDIT : Yes, I tought to session but when I go to home, I need to delete this session. Is it really a good idea to use session ?
EDIT : Which is the best way ? COOKIE OR SESSION
Thanks
I think you want sessions:
The first page can put the ID in the session and the other page can retrieve it.