All Questions
2 questions
3
votes
1
answer
2k
views
How to remove folder from Request_URI in php and xampp?
I have url to index.php like this
http://localhost/exercise/
When I call
return var_dump(
trim(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH), '/')
);
I have exercise project folder in xampp'...
1
vote
0
answers
469
views
How to retrieve script name using $_SERVER['REQUEST_URI']?
I am using Object Oriented PHP for a project which I am developing on my local system. Path to the project in my system is :
localhost/ecommerce/
I am retrieving the file name using $_SERVER['...