php get url string code example

Example 1: php get url

$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

Example 2: get url with php

$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

Example 3: how to fetch data from url in php properly

use <?php $_SERVER['REQUEST_URI'] ?> in action"" to get the data properly

Example 4: how to fetch data from url in php properly

Add action="<?php $_SERVER['REQUEST_URI']; ?>" if you dont know just copy and paste it

Tags:

Php Example