What is the HTML code for a forum?

Casm

New member
The main forum page and then the extra pages. I tried numerous different approaches, but none of them work.
I have my own website and I am trying to figue out how to create a forum out of HTML, since it is one of the pages I'm missing.
 
Well firstly, you cant write a forum in HTML, you need some server side scripting such as PHP or it will suck.

Also, there are more pages than you think, and you need a database.

Therefore the easiest option is to download free forum software such as PHP BB 3.

Good luck.
 
HTML is the "language - code" by witch every singe web-site is made.
For example:
<html>
<head>
<title> my site </title>
</head>
<body>
Welcome to my forum....
.
.
.
.
</body>
</html>

Thats an example of an HTML website.
 
Back
Top