PHP Split Problem

jkewi1

New Member
I am trying to use (and I've tried both) preg_split() and split() and neither of these have worked for me. Here are the attempts and outputs.\[code\]preg_split("^", "ItemOne^ItemTwo^Item.Three^");//output - null or false when attempting to implode() it.preg_split("\^", "ItemOne^ItemTwo^Item.Three^");//output - null or false when attempting to implode() it. Attempted to escape the needle.//SAME THING WITH split().\[/code\]Thanks for your help...Christian Stewart
 
Back
Top