|
Posted by Janwillem Borleffs on 05/02/06 23:17
pspauthority@gmail.com wrote:
> notice the
>
> index.php/Main_Page
>
> it uses a slash, rather than a question mark.
>
> can someone please show me how to do this myself? It'd be appreciated
>
You can parse the $_SERVER['REQUEST_URI'] variable and, per example, parse
it as follows:
$arg = substr(
$_SERVER['REQUEST_URI'],
1 + strrpos($_SERVER['REQUEST_URI'], '/')
);
JW
Navigation:
[Reply to this message]
|