Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <?php
  2.  
  3. $jtv_chan = $_POST['jtv_chan'];
  4. $jtv_key = $_POST['jtv_key'];
  5.  
  6.  
  7. $generate = "<?php \$jtv_chan = '".$jtv_chan."'; ?><?php \$jtv_key = '".$jtv_key."'; ?>";
  8. $handle = fopen("../configs/justin.php", 'w+');
  9. if (!$handle) {
  10.     echo "<strong>Could not find or open the file</strong>>";
  11. }
  12.         fwrite($handle, $generate);
  13.         fclose($handle);
  14.  
  15.  
  16.  
  17. ?>
  18. <meta http-equiv="REFRESH" content="2;url=../test2.php">
  19. <center>
  20. <br>
  21. <br>
  22. <h1>Updating...</h1>
  23. <img src="../images/loading.gif" width="25%">
  24. </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement