Storing User Data on the Web

by Ruaridh Bell on June 30, 2023 6 comments

Introduction

In the world of software development, one of the most important considerations is how to store and manage data across different sessions and users. One way to achieve this is through local storage. In this blog post, we will explore how to store user specific data within LiveCode as well as in your deployed web apps using local storage, demonstrating how it works, and its benefits.

Using LocalStorage within LiveCode

Within this post in order to demonstrate how each of these methods work we are going to be creating an app that allows you to store your name, age and location/city that will eventually be displayed when you start up your app, just using local storage methods. This stack can be downloaded here.

read more
Ruaridh BellStoring User Data on the Web