vfunc wrote:
[color=blue]
> What do people do along the lines of generating html, php or some other
> scripts for web dev?[/color]
To write a web site in C++, get tinyxml and an XSLT processor, such as
MSXSL.exe or xsltproc. Write a web page's variable data into an XML file,
and write an XSLT template which converts this into XHTML. So a CGI script
written in C++ can simply parse out the server variables with cgicc. Then it
performs its logic, writes an XML file, translates this with XSLT, and
streams the translation out the web server.
[color=blue]
> Also what is the usual way of linking C++ with
> these web languages ? I'm more interested in Linux than windows
> platform.[/color]
Just write in C++. Folks use soft (and advertised) languages for web
development under the mistaken belief they enable rapid application
development. C++ is just as rapid if you follow a few zillion rules, such as
rely on the Standard Library, and write unit tests.
You were going to write unit tests in your soft language too, right?
--
Phlip
http://c2.com/cgi/wiki?ZeekLand <-- NOT a blog!!!