Guest User

Untitled

a guest
May 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. if (isset($_POST['submit'])) {
  4.  
  5. $twitchArray = array(
  6. "TwitchName" => $_POST['twitchName'],
  7. "TwitchHref" => $_POST['twitchHref'],
  8. "TwitchDescription" => $_POST['twitchDescription']
  9. );
  10.  
  11. $json = json_encode($twitchArray);
  12.  
  13. $file = 'twitch.json';
  14.  
  15. file_put_contents($file, $json);
  16.  
  17. echo json_decode('twitch.json');
  18. }
  19. ?>
Add Comment
Please, Sign In to add comment