Answers for "get value from url in php"

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

getting values from url php

$id = $_GET['id'];
// OR

$id = $_REQUEST['id'];
Posted by: Guest on March-06-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
0

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
?>
Posted by: Guest on May-09-2021
0

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);
echo($results['email']); 
?>
Posted by: Guest on April-23-2021
0

php get data from url

// previous link 
<a href="test_get.php?subject=PHP&web=W3schools.com">Test $GET</a>
// the code
<?php
echo "Study " . $_GET['subject'] . " at " . $_GET['web'];
?>
Posted by: Guest on November-03-2020

Browse Popular Code Answers by Language