For a guide to the choosing ASP or PHP, click here
Home >> Math >> Dividing Numbers Using Variables This sample shows you how to preform division using numbers stored in variables
<% ' declare variables dim intFirst, intSecond, intTotal ' this sets the variable intFirst to 10 and ' the variable intSecond to 5 intFirst = 10 intSecond = 5 ' now divide intFirst by intSecond and save the ' result to the variable intTotal intTotal = intFirst / intSecond %> What is ASP?
What is PHP?