Answers for "get url value using php"

PHP
3

php get url with get

$full_url = 'http://'.$_SERVER[HTTP_HOST].$_SERVER[REQUEST_URI];
Posted by: Guest on March-26-2021
1

getting values from url php

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

$id = $_REQUEST['id'];
Posted by: Guest on March-06-2021

Browse Popular Code Answers by Language