Guest User

WP-WS-LS

a guest
May 8th, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.64 KB | None | 0 0
  1. <head>
  2.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
  3.     <script type="text/javascript">
  4.         function getStates(value)
  5.         {
  6.             $.post("/is/htdocs/xxxxxxxxxxxxxxxx/www/main/wp-content/uploads/jb/search.php", {partialState:value}, function(data)
  7.             {
  8.                 $("#results").html(data);
  9.             });
  10.          }
  11.     </script>
  12. </head>
  13. <body>
  14.     <?php
  15.         if ($_POST["sub"] == "ADD")
  16.         {
  17.             $file = file_get_contents('/is/htdocs/xxxxxxxxxxxxxxxx/www/main/wp-content/uploads/jb/res/songs');
  18.             $file .= $_POST["bandsong"]."\n";
  19.             file_put_contents('/is/htdocs/xxxxxxxxxxxxxxxx/www/main/wp-content/uploads/jb/res/songs', $file);
  20.            
  21.             $file = file_get_contents('/is/htdocs/xxxxxxxxxxxxxxxx/www/main/wp-content/uploads/jb/res/res/urls');
  22.             $file .= $_POST["url"]."\n";
  23.             file_put_contents('/is/htdocs/xxxxxxxxxxxxxxxx/www/main/wp-content/uploads/jb/res/urls',$file);
  24.         }
  25.     ?>
  26.     <table>
  27.         <tr>
  28.             <form action="#" method="POST">
  29.             <td>Band - Song: <br><input type="text" name="bandsong" onkeyup="getStates(this.value)" required ><br><div style="color: lightgrey;font-size: 9px;position: relative; top: -25px;">Britney Spears - Stronger</div></td>
  30.             <td>URL:<br><input type="text" name="url" value="" required><br><div style="color: lightgrey;font-size: 8px;position: relative; top: -25px;">https://www.youtube.com/watch?v=AJWtLf4-WWs</div></td>
  31.                 <td><div style="position: relative; top: -15px;"><input type="submit" name="sub" value="ADD"></div></td>
  32.             </form>
  33.         </tr>
  34.     </table>
  35.     Ähnliche Songs in der Jukebox:
  36.     <div id="results"></div>
  37. </body>
Add Comment
Please, Sign In to add comment