salahuddien

get url

Jul 22nd, 2019
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. print_r ($_FILES);
  2. print_r($_REQUEST);
  3.  
  4. console.log('protocol >> '+window.location.protocol);   // http:
  5. console.log('hostname >> '+window.location.hostname);   // 127.0.0.1
  6. console.log('pathname >> '+window.location.pathname);   // /
  7. console.log('hash >> '+window.location.hash);          
  8. console.log('href >> '+window.location.href);           // http://127.0.0.1:8080/
  9. console.log('port >> '+window.location.port);           // 8080
  10.  
  11. var href = location.href; //hehe
  12. console.log(href.match(/([^\/]*)\/*$/)[1]);
Advertisement
Add Comment
Please, Sign In to add comment