We already saw how to develop web application in C Language using ‘Get Method‘. Now lets see the other method which most of the applications use to transfer data. Post Method: create test.html as following and put it in apache htdocs folder. <html> <head> <title>Enter Ur Name</title> <script type=”text/javascript”> function FormString() { var Name=document.getElementById(‘Name’).value; var [...]
Archive for the ‘C,FastCGI’ Category
Web development using C Language (Post Method)
Posted in C,FastCGI on May 16, 2007 | Leave a Comment »
Web development using C Language (Get Method)
Posted in C,FastCGI on May 12, 2007 | Leave a Comment »
As we all know, C is a general-purpose, block structured, procedural, imperative computer programming language. With C Language we can also do web development. Here are the steps to do so. We can implement this in two ways. 1) Get Method 2) Post Method Get Method: create test.html as following and put it in apache [...]