0
Is it possible to make dynamic website using c and html
Is their any way that we can create dynamic website using html and c. C language is server side language.
1 ответ
+ 4
For using C to generate (D|X)HTML, you will have to write CGI programs. CGI programs should output the Content-type: text/html or equivalent before HTML is output. ... Have your C program write Content-type: text/html\n\n to stdout before anything else, and you can then generate whatever HTML you wish.