For a guide to the choosing ASP or PHP, click here
Home >> Math >> Multiplying Numbers Using Variables This sample code just shows you how to multiply two numbers that are stored in variables
<% ' declare variables dim intFirst, intSecond, intTotal ' this sets the variable intFirst to 5 and ' the variable intSecond to 10 intFirst = 5 intSecond = 10 ' now multiply intFirst and intSecond and save the ' result to the variable intTotal intTotal = intFirst * intSecond %> What is ASP?
What is PHP?