Passing Data from one page to another
Answered
Boreal Chickadee posted this in #help-forum
Boreal ChickadeeOP
I have login page where i get data from backend api n now i want to send that data to profile page
how can i do this ?
how can i do this ?
Answered by B33fb0n3
Normally you have a session and then can directly access the session. There is for example a
When you are not logged in yet, you send the inputs from the user to the server and verify if he's allowed to login. If he's allowed create the session
userId and then the profile page will be loaded for that specific user (using the userId)When you are not logged in yet, you send the inputs from the user to the server and verify if he's allowed to login. If he's allowed create the session
3 Replies
@Boreal Chickadee I have login page where i get data from backend api n now i want to send that data to profile page
how can i do this ?
Normally you have a session and then can directly access the session. There is for example a
When you are not logged in yet, you send the inputs from the user to the server and verify if he's allowed to login. If he's allowed create the session
userId and then the profile page will be loaded for that specific user (using the userId)When you are not logged in yet, you send the inputs from the user to the server and verify if he's allowed to login. If he's allowed create the session
Answer
@B33fb0n3 Normally you have a session and then can directly access the session. There is for example a userId and then the profile page will be loaded for that specific user (using the userId)
When you are not logged in yet, you send the inputs from the user to the server and verify if he's allowed to login. If he's allowed create the session
Boreal ChickadeeOP
okey thanks for the help
happy to help