can I get the url params in php code example
Example: 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);
?>