php get url params code example
Example 1: Get Parameters From a URL String in PHP
phpCopy<?php
echo $_GET['email'] . $_GET['name']
?>
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);
//$component parameter is PHP_URL_QUERY
parse_str($components, $results);
print_r($results);
?>