I have a template that I made that sets variables that rarely change, call my headers, call my banner and sidebar, load a variable that displays individual pages, and then call the footer. In one of my headers, I want the URL of the page in the user's address bar. Is there any way to do this?
Currently
<?php
$title = "MySite - Contacts";
include("header.php");
.
.
.
?>
source
share