I need to remove the first two digits from a 6-digit number. I've been reading the manual but can't seem to find a solution...
Any help?
$newstring = substr("abcdef", 2); // returns "cdef"
$digits = substr("123456",2);
sorry, didn't see Gabriel's post.
😉