For a guide to the choosing ASP or PHP, click here
Home >> Miscellaneous >> Create a Function that Returns a Variable This code is an example of how to easily create, and call, a function that will return a variable
<% ' the next line declares the title function myfunction() ' all this function will do, is ' return the word "Hello" myfunction = "Hello" end sub ' the next line will display the ' returned string from myfunction ' to the screen response.write(myfunction) %> What is ASP?
What is PHP?