Answer the question
In order to leave comments, you need to log in
How to make a simple blog in C++?
I want to try to make a website that is fast, not demanding.
I want to make simple static html for this
and rebuild them if necessary. it will be a multi-user and multi-lingual site.
I saw the site of a large company: vseti.ru but it is written for Muscovites: it is very demanding on resources and line width.
and it is important for me that my site opens on any device and is super-fast. so static html is what I need.
for the authors of the site will be created section Cabinet - which will have all the functions of working with the content.
the daemon will update the sections and publish the added content.
there will be no databases, because in my opinion, the content will be simple and all this can be stored in ordinary files.
What I saw:
On the stack they say that in the hands of beginners this will not work or will be worse than normal php.
here I found ready-made solutions www.chilkatsoft.com/refdoc/cpp.asp
and there is also WebToolkit.eu - but it is complex and large.
how can I make a site that will create regular static html files and will also have a form for creating new materials, adding headings?
I already tried to display Hello world on a simple shared hosting and I succeeded, I'm glad.
I just wrote a file like:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}
Answer the question
In order to leave comments, you need to log in
Why even use C++ for the web? It's like a hovercraft tractor floating on water.
PhP, Node.js the same, why are they bad?
Start by learning about the HTTP protocol, specifically how cookies are transmitted.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question