php get string variables from url code example
Example 1: php get value from url
<a href="index.php?id=<?php echo $my_id;?>&name=<?php echo $my_name;?>Click</a>
<?php
$id = intval($_GET['id']); // integer value
$name = strval($_GET['name']); // string value
?>
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);
parse_str($components['query'], $results);
print_r($results);
?>