hiya...
i dont think there's a dedicated ltrim/left... but you can use substr (or wrap it up nicely into a ltrim fn)
substr(string string, int from[, int to])
(note that strings start at index 0...
INTO abcd..
012345678..
)
eg. $trimed = substr($value, 4);
with $value = "INTO 123", $trimed = " 123"
i'm sure you could use a regexp as well, but i'll leave that to someone who knows what they're talking about 😉
dom
🙂