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