Question:
What would you call this type of client database and how could i design it free?
anonymous
1970-01-01 00:00:00 UTC
What would you call this type of client database and how could i design it free?
Three answers:
anonymous
2016-11-29 04:20:25 UTC
specific, they have a splendid. although, in the event that they try this's in simple terms jealousy in my view. they does not be complaining in the event that they have been interior an identical place. that's specific people who purchase tickets who think of because of the fact they bought a seat they could say such issues. nicely, they could stay at domicile in the event that they don't prefer to make contributions to the insanity and supply up staring on the video games on television besides. yet there's a reason those adult men gets a commission what they do, that's because of the fact this is the going cost for entertainers of their calibur. in the event that they at the instant are not getting the money then who does? the owner? the money has to flow someplace and that i think of it is going to the splendid people, people who get available and bust their butts on the sphere.
Mikett
2011-08-24 09:09:44 UTC
Client side databases are limited to the website and the client. This means you won't be able to do any type of data transfers to where if you're wishing to share one client's data with another without going to some form of server side scripting.



If you are JUST going to save data between the user and the webpage, and nothing more, you can save data using JavaScript in cookie forms, or using the browsers build in localStorage method. Either way, both methods are limited in the amount of memory you can save. A quota if you will.



LocalStorage uses three methods in JavaScript.



window.localStorage.getItem(key);

window.localStorage.removeItem(key);

window.localStorage.setItem(key, value);



The function names are self explanatory.



getItem finds the key specified and returns it's value. If the key is not found, it returns undefined. removeItem removes the key specified from the user's localStorage. The setItem sets the key with the proper value sent, in the users localStorage. The localStorage is also treated as a JavaScript object, thus, window.localStorage.getItem(key) is the same as window.localStorage.key. window.localStorage.setItem(key, value), is the same as window.localStorage.key = value, and so on. Using the functions are just a more conventional method of using the localStorage object.
.
2011-08-24 08:45:23 UTC
Not alot you can do using a free webhosting site. You are extremely limited in what you're allowed to do. And if you're allowed to do it, it would be dog slow.



In order to do what you want to do, you need to buy hosting, buy a domain name.



Then, it would take you a few years - yes I mean years, because you have little experience in html. You need to learn html, css, php and mysql databases, and most likely javascript as well. Either that, or hire a web developer and programmer.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...