Hi, someone told me to use substr() for something and the negative elements I picked up easily. But I'm having trouble with the positive ones. So at php.net
echo substr('abcdef', 1, 3); //returns bcd
Does this return bcd because its saying remove the first one, then use the next 3 in a row together? Because other positive numbers used similary seem to return different results. Please let me know, thanks a lot.