Hi,
There is no such thing as a web based DBMS. Any database driven website will be accessed via the web server hosting the site, which in turn will communicate to the back end DBMS, whether it be Access, MySQL, SQL Server, DB2 or anything else.
The order of communication is:
User -> Client browser -> Web server -> DBMS
and back the other way.
John