ajax <-> database safety
I am planning to build a site generator which will be based on jquery and less. What I have in mind is a highly extendible system and an admin area based on ajax.
The admin can adjust colors, forms, menus, build pages ad and configure widgets in the page etc. etc The backbone of the application will be a database.
To make it really extensible I want to add the possibility that the admin can make database tables and add forms for these tables. All forms in the site will be ajax driven.
Now there is a thing about safety, with standard forms this will not be an issue, the thing is the dynamic created forms, there are several ways to implement a system like that.
One way I can think of is that a dynamic created form sends the table name in an ajax call. But here is where I have some doubt. Allthough the database should allways be protected with a password etc. etc. my policy towards safety is give as less information away as possible about the server, it doesn't take rocket sience to read an ajax request to the server. So if I implement it in that way users can easily see what tables exactly are being updated.if they inspect the traffic from and to the server. What do you think, is this a thing I should avoid?
