• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

C++ in HTML

LynC

Junior Member
😕
We are doing a C++ class project. We are developing a website and need to know how to integrate C++ in HTML code.Please help.
 
You want to actually put c++ code into a .html file? C++ has to be compiled before it can be used, so good luck.
 


<< We are doing a C++ class project. We are developing a website and need to know how to integrate C++ in HTML code.Please help. >>



Do you mean that you need to display some C++ code in an HTML page? If so, I'd say to use the format tags to do that.
 
not sure what you mean, but if you want to actually *run* C++ code in an HTML page like a web app, that's not exactly possible. PHP is kind of a cross between perl and C, and you can embed that in HTML.... so if that sounds like what you're trying to do, go to php.net and start reading 😉
 
Back
Top