Math brings up a good point. When many people say "SQL" sometimes they mean MS SQL Server, not SQL the language. SQL has become a common abbreviation for it. Access uses SQL (the language) as well for queries. Math is right about SQL Server being much faster - it's incredibly faster if there's a lot of data involved. But you can use either as a back end for web applications.
Nut, to answer your question about making a web app from Access, yes, it's not too hard. But it depends on what type of web server software your webhost uses: Apache, IIS, etc. You will use different types of pages for different hosts: you would use ASP on a Windows-based IIS server, probably PHP on an Apache webserver on a Linux machine or maybe even Java.
I think people in general frown on using ASP on Apache, but you can use PHP on IIS - the configuration isn't easy, but it can be done. Anyhow, you probably don't have to worry about that if your host will be doing it. All you have to worry about is designing the database structure and crafting the pages to interact with it.
Programming in PHP or ASP isn't supereasy, especially if you haven't worked with databases before as well as have a moderate understanding of how a web server works. But it can be done, and there's lots of sites out there that give free advice, FAQ's, tutorials, etc. For a lot of people it's an entire career path. In fact, this entire message board was written in a combination of PHP and Javascript I think, and somewhere out there is a big mySQL or SQL Server database with all of our posts in it
As far as I know, there aren't a lot (any?) good WYSIWIG PHP or ASP editors out there. I know Visual Studio.NET can do a lot with ASP.NET (a version of ASP), and I think Dreamweaver UltraDev can help with PHP, but I'm not sure. Most of these pages are probably written by hand (as far as the underlying code) and then a graphics person gets a hold of the site. I write a lot of ASP pages, and I pretty much just use a text editor - sometimes I use MS Visual InterDev or .NET, but usually only for debugging.
As for SQL, if you're talking about it with database programmer types, you might want to refrain from calling it "sequel" or you'll get a lot of
So, now that you've waded through all that garbage I've posted so far, do you know what type of server your web host uses? And what type of database it is? I'd be glad to help you get started, or point you to some sites that can help....