View Single Post
Freecode
Never Fall Asleep
Join Date: Jan 2004
Old 07-24-2006 , 21:18   Re: Sockets and webservers
Reply With Quote #7

a better example of explode is
new string = "hi||i||am||gaben";
new stuff = explode("||",string);

and itl look like this
stuff[0] = "hi"
stuff[1] = "i"
stuff[2] = "am"
stuff[3] = "gaben"
Freecode is offline