How do you create a forum page with html css js?

plz help

The last 2 posts

You need more than just html, css and js

You also need a server to handle requests and store info. JS is on the client, it only is on the visitor’s machine.

You will need a server language of some sort (in the case, probably PHP).

Then you also need a database to store your forum pages.

I made a small wiki out of Go, which I basically stored the forum pages as a JSON file and served them dynamically. IDK how you would do this with PHP, considering that I don’t think it’s resource friendly to make a PHP page for every forum page that exists.

I recommend being fluent in fullstack before doing this.

4 Likes

thx!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.