Skip to content

Instantly share code, notes, and snippets.

@derwinsadiwa
Created October 19, 2023 11:41
Show Gist options
  • Select an option

  • Save derwinsadiwa/91dafef6a09260bb82b83df422ff700c to your computer and use it in GitHub Desktop.

Select an option

Save derwinsadiwa/91dafef6a09260bb82b83df422ff700c to your computer and use it in GitHub Desktop.
PHP
<?php
$currentPageUrl = 'https://' . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"];
if ($currentPageUrl == "https://www.carparts.com/blog/how-to-replace-a-car-battery/") {
echo '<script>console.log("car battery>>>");</script>';
} else {
echo '<script>console.log("not car battery>>>");</script>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment