w3resource

PHP Exercises : Get the full URL

PHP : Exercise-22 with Solution

Write a PHP script to get the full URL.

Sample Solution:

PHP Code:

<?php
// Constructing the full URL using $_SERVER variables
$full_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

// Display the constructed full URL
echo $full_url . "\n";
?>

Sample Output:

View the output in the browser

Flowchart:

Flowchart: Get the full URL

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a PHP function to test whether a number is greater than 30, 20 or 10 using ternary operator.
Next: Write a PHP script to compare the PHP version.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.