get url value using php code example
Example 1: getting values from url php
$id = $_GET['id'];
// OR
$id = $_REQUEST['id'];
Example 2: php get url with get
$full_url = 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];
$id = $_GET['id'];
// OR
$id = $_REQUEST['id'];
$full_url = 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];