For a guide to the choosing ASP or PHP, click here
Home >> Math >> Adding Numbers Using Variables This code shows how to use numbers stored in variables, and add them together
<% ' declare variables dim intFirst, intSecond, intTotal ' this sets the variable intFirst to 5 and ' the variable intSecond to 10 intFirst = 5 intSecond = 10 ' now add intFirst and intSecond and save the ' result to the variable intTotal intTotal = intFirst + intSecond %> What is ASP?
What is PHP?