tags:

views:

36

answers:

1

I am using HTML and CSS for creating web pages. I want my web pages to be more dynamic and user friendly, so which languages do I need to learn to do so?

+2  A: 

It depends on exactly you want to do, but you can do a lot with AJAX (Asynchronous JavaScript and XML) which "just" uses JavaScript and XML data files. As this still runs on the client side you don't need any changes to your web server. The content is still static.

To go further and generate content as requested you'll need to get into server side languages like PHP, ASP.NET etc. for which you might need a new hosting environment. These generate the page server site and the user views that. These still use JavaScript on the client side to perform the "user friendliness" though.

ChrisF