Grab URL PHP code for FaceBook Comments HTTP to HTTPS

Hello, I have been using this code to grab the current page URL to input it into my Facebook comments through out my website:

<?php
function curPageURL() {
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
?>


I then use this...

Grab URL PHP code for FaceBook Comments HTTP to HTTPS

from PHP http://ift.tt/2aoHGOv
via IFTTT
Previous
Next Post »
Thanks for your comment