Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php
  2. function curPageURL() {
  3.  $pageURL = 'http';
  4.  if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
  5.  $pageURL .= "://";
  6.  if ($_SERVER["SERVER_PORT"] != "80") {
  7.   $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
  8.  } else {
  9.   $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
  10.  }
  11.  return $pageURL;
  12. }
  13. ?>
  14. <input id="custom" name="custom" value="<?php echo
  15. strstr(curPageURL(), 'STEAM_');?>" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement