I have a path like this:
parent/child/reply
How do I use php to remove the last part of the path, so that it looks like this:
parent/child
Thanks!
I have a path like this:
parent/child/reply
How do I use php to remove the last part of the path, so that it looks like this:
parent/child
Thanks!
dirname(). You can use it as many times as you'd like