Hi.
I have my content in different .txt-files.
Now I want to check the REQUEST_URI and
let PHP include the correct .txt-file.
For example:
If the current page is '/test/whatever.php3'
the file 'whatever.txt' should be included.
That means I have to split the REQUEST_URI
into three parts: '/test/', 'whatever' and '.php3'
And I just wanna work with 'whatever'.
How does that work?
Could someone please help me?
Fox