For a guide to the choosing ASP or PHP, click here
Home >> Arrays >> Split String into an Array This code sample will show you can you can split a string into an array
<% ' declare variables dim strNumbers dim arrNumbers ' set the string value strNumbers = "one,two,three,four" ' split string into an array element ' at every comma arrNumbers = split(strNumbers, ",") ' This is the new arrNumbers: ' arrNumbers(0) is "one" ' arrNumbers(1) is "two" ' arrNumbers(2) is "three" ' arrNumbers(3) is "four" ' without the quotes %> What is ASP?
What is PHP?