adsense


Saturday, 28 November 2015

C++ LANGUAGE SIMPLE FORM EXAMPLE: GET METHOD

COMPUTER LANGUAGES HTML,C,C++.JAVA,.NET AND MULTIMEDIA basics and programs click home button



C++ LANGUAGE SIMPLE FORM EXAMPLE: GET METHOD





Simple FORM Example: GET Method 


Here is a simple example which passes two values using HTML FORM and 
submit button. We are going to use same CGI script cpp_get.cgi to 
handle this input. 

<form action="/cgi-bin/cpp_get.cgi" method="get"> 

First Name: <input type="text" name="first_name">  <br /> 
  
Last Name: <input type="text" name="last_name" /> 

<input type="submit" value="Submit" /> 

</form> 

Here is the actual output of the above form. You enter First and Last 
Name and then click submit button to see the result. 

 First Name: 
  Last Name: 


No comments: