|
There are many ways to get database data into a web page. PhP, ASP, and Cold Fusion are all able to do this. They are web server add ons that go between the database and the web server.
The answer to your question will depend a little on what you know, and what webserver and database you will use.
If for example you have php and Access on a Windows PC with IIS or Apache, you would use ODBC to connect. Each page you create in php would pull data from your Access database via that link.
If you have MySql and php on a Unix or Windows system, you would only need the MySql functions in php.
Not once you get connected to your data, the way you use that data is up to you.
There are many ways to use it, for example this board is database driven. Each post goes into a database. Each search pulls records from that database, each time a post is edited, the changes are also put in the database. It doesn't look like Access, but thats the difference in a web app vs the database client.
If your looking for somone to code it for you, well, your out of luck.
But if you want to see some existing systems check out hotscripts.com
PHPMyAdmin is a very good web based database app.
Let us know if you get stuck.
|