/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// This function defines the Absolute URL function absolute_url($page = 'index.php') { // Remove trailing slashes // Add the page... $siteURL .= '/' . $page; // return the url.. return $siteURL; } // End function