![]() |
Admin 5/13/2024 |
Please read this for instance: Phrase to search in Google: "php read parameter from url" |
C
|
Chris Whitehead 5/13/2024 |
I usually use $_SERVER[''REQUEST_URI'] , you might have to use this basename( $_SERVER[''REQUEST_URI'] ) to strip out the path. There's also pathinfo($_SERVER['REQUEST_URI']) If you want the parameters as well, they should be in the $_REQUEST variable Have a test with them and see which suits your needs. |
P
|
PK author 5/14/2024 |
Thank you admin and Chris. |