Hi there guys. I need to know if it is possible to have a C++ program support a web application (i.e. an application that runs in a web browser). I want my C++ program to sit in my hosting server and then act as an engine to my web application. IS THIS POSSIBLE?
@coder777 Okay let me understand this better. Does this mean with these libs I can now create a C++ powered website. I guess what I am asking is that "Can I now do away with languages like PHP, Ruby, Python etc and just use C++ with one of these libraries"
Yes. You can do that even without the libraries. They bring in some convenience.
Like I said before. The browser generates a standardized HTTP/Text request and your response needs to meet the requirements as well.
The libraries just help to simplify that task.