I am developing a website with php, javascript, html5 and css3. I want to change the color according to what the user chooses in a developed configuration section and that those changes are stored How could I do it?
I am developing a website with php, javascript, html5 and css3. I want to change the color according to what the user chooses in a developed configuration section and that those changes are stored How could I do it?
Well the first thing you can do is that in the db where you find the credentials of your user add a more column that is preference, where you either save the color or a code. Then when the person loguea brings you that data and you can put the color of your preference. If not, you can also save this preference in the localstorage, which is a local storage and that helps for these cases where they are not critical data.
Greetings