hello guys,
i want to make application that have the log in system for user.
my question is, how to implement the session concept (like in PHP) for storing user info in widget WRT?
Thanks Before,
hello guys,
i want to make application that have the log in system for user.
my question is, how to implement the session concept (like in PHP) for storing user info in widget WRT?
Thanks Before,
there is something similar to cookies in WRT
you can also use javascript cookies if you want, even $_SESSION from php if your widget runs onlineCode:widget.setPreferenceForKey('john_doe',"username"); usernameJS=widget.preferenceForKey("username");
remember: WRT is like a browser without the bars and buttons of the browser and with your content loaded as default page... the rest you control it: can redirect (JS) to an online .php page hosted on your server, and so on...
hello shpe...
found very helpful answer here... thanks for the answer here.