Hello
I want to get url in adress bar without params
the problem that the server url is different from the one shown in adress bar but I want to show the one in adress bar not real url
Try the following which should show all the parameters passed, select the relevant parameter and perhaps use PHP string functions to extract the required data:
echo '<pre>'; // add line feed so it is easier to read.
print_r( $_SERVER );
echo '</pre>';
die; // halt execution