Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. function Redirect($url, $statusCode = 303)
  4. {
  5. header('Location: ' . $url, true, $statusCode);
  6. die();
  7. }
  8.  
  9. Redirect('https://www.youtube.com/watch?v=Z6mgIRRSF_s', false);
  10.  
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement