For a guide to the choosing ASP or PHP, click here
Home >> Variables >> Collect Form Data using GET This code sample shows how to read in the contents of a form using the GET method
<% ' example html: ' ' ' ' ' or just load aspfile.asp?input1=Your_value_here ' declare variable dim strInput1 ' collect data strInput1 = request.querystring("input1") ' the user's input is now stored in ' the variable: strInput1 %> What is ASP?
// // // // or just load phpfile.php?input1=Your_value_here $strInput1 = $_GET["input1"]; // the user's input is now stored in // the variable: $strInput1 ?> What is PHP?