which language will be suitable for an web Interface [closed]
If your web UI needs are simple, there's no reason you can't build the web interface in C++ as well. I have built a server using the mongoose embeddable http server library, adding support for web configuration pages is simple enough. If all you need is to render some input forms and process the input fields when the user submits the form, you can do it all very easily in C++. If you need to build more sophisticated web pages, you might be better off using bindings for Python, Perl or whatever language you feel most comfortable with.
If you're using the web app to write to config files, and then reading them using the C++ app, you can use any of those languages.
When I'm doing something that I want built quickly I would grab PHP or Perl. Both have extensive libraries that can do just about anything you would need. My personal preference for something like you are describing would be PHP but that is a personal preference only.
You can easily interface between Python and C++ using Boost.Python.
精彩评论