Answers for "php get the parameter from url"

PHP
3

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 "php get the parameter from url"

Browse Popular Code Answers by Language