how to get the value of variable by url in php code example
Example 1: Get Parameters From a URL String in PHP
phpCopy<?php
$url = "https://testurl.com/test/[email protected]&name=sarah";
$components = parse_url($url);
parse_str($components['query'], $results);
echo($results['email']);
?>
Example 2: Get Parameters From a URL String in PHP
phpCopy<?php
$url = "https://testurl.com/test/[email protected]&name=sarah";
$components = parse_url($url, PHP_URL_QUERY);
parse_str($components, $results);
print_r($results);
?>