Hi Guys,

I'm here with another problem. I want to know that is it possible to make a Dynamic website through HTML. I know we can make simple website using HTML. But I want to make a Dynamic website. So, please tell me is it possible or not?

Recommended Answers

All 4 Replies

If you mean just HTML, then no. You'll need a server side script to create your dynamic HTML.

server side, or client side... with a bit of javascript you can have a bit of a dynamic touch. but there is need to scripting, that part is right.

html is client side scripting and for dynamic site need to server side language such as PHP ,ASP ,JSP etc


or you use any CMS for this

html is not scripting. JavaScript is scripting, perl is scripting, ...
the client side scripting is not the html itself, but the scripts in a scripting language that are coded in the html document:

<script type="text/javascript">
function showAlert(){
alert("Hello world!");
}
</script>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.