php get a url using name code example
Example 1: php get url with get
$full_url = 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];
Example 2: php get url path name
parse_url( $_SERVER[ 'REQUEST_URI' ], PHP_URL_PATH );
$full_url = 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];
parse_url( $_SERVER[ 'REQUEST_URI' ], PHP_URL_PATH );