What languages do I need to build an imageboard besides HTML?

0
8
Asked By TechieWizard93 On

I'm working on a personal project to create an imageboard, but I've realized that I need more than just HTML to make it functional. I already know I should use JavaScript and CSS, but I'm unsure if there are other languages or technologies that I should consider. Any guidance or suggestions would be greatly appreciated!

4 Answers

Answered By CodingNinja42 On

You definitely need JavaScript, HTML, and CSS for the frontend of your imageboard. However, keep in mind that imageboards are somewhat outdated tech-wise. If you're still going for it, you'll also need a backend language like Node.js, Python, or PHP, along with a database to store your images and data.

Answered By WebDevGuru78 On

Just to clarify, HTML and CSS are usually not considered programming languages because they're more about structuring and styling, rather than containing logical programming constructs. For building a web app like an imageboard, you should focus on HTML, CSS, and JavaScript to start. Also, it might benefit you to use a JavaScript framework, as managing state and updates can get complicated quickly without one.

Answered By CodeMaster99 On

Aside from the basics (HTML, CSS, JavaScript), you'll likely want to learn SQL (like MySQL) for your database, and PHP is a solid choice for server-side coding. Additionally, getting familiar with technologies like Ajax, XML, and JSON will really help with data handling.

Answered By DevExplorer On

You can also consider using C# with Blazor if that's your jam. It’s a modern approach for web apps.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.