I know the title is a little confusing but here is an example:
String: SELECT * FROM tbl_clients ORDER BY updatedOn LIMIT 0,50
What I want, is to take everything after FROM and put that into a new string.
So my resulting string would look like: tbl_clients ORDER BY updatedOn LIMIT 0,50
Is there any way to do his?
Well, you could use explode like so: