I want to get filename without any $_GET variable values from a URL in php?
$_GET
My URL is http://learner.com/learningphp.php?lid=1348
http://learner.com/learningphp.php?lid=1348
I
You can use,
$directoryURI =basename($_SERVER['SCRIPT_NAME']); echo $directoryURI;