Answers for "how to make php get a parameter from the current url as a variable"

PHP
4

Get Parameters From a URL String in PHP

phpCopy<?php 
echo $_GET['email'] . $_GET['name']
?>
Posted by: Guest on April-23-2021
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);
print_r($results); 
?>
Posted by: Guest on April-23-2021

Code answers related to "how to make php get a parameter from the current url as a variable"

Browse Popular Code Answers by Language