Best HTML-based chatroom for website?

  • Thread starter Thread starter kavurcen
  • Start date Start date
K

kavurcen

Guest
I want to put a chatroom in my website, and I need one where you have to make accounts, not just type in a name.
 
HTML does not do things like manage chatrooms.
HTML is just a markup language. It does not manage interactivity.

You need PHP and JS for that. Plus you will need a content manager.
 
HTML by definition will not allow you to do that.
HTML = Hyper Text Markup Language, and that's all it is. It's a bunch of XML-style code that will tell your browser HOW to display something. It won't make anything interactive, per se.

You'll want to venture into Java, PHP, ASP .. some other kind of interactive language for that.
 
Back
Top