TechGeek

confirmed.php

Sep 16th, 2020 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. // Start session.
  6. session_start();
  7.  
  8. // Include helper functions.
  9. require_once 'helpers.php';
  10.  
  11. /**
  12.  * Run your action here if user confirms to take over another user.
  13.  */
  14. echo json_encode([
  15.     'data' => 'User confirmed to take over another user.',
  16. ]);
Add Comment
Please, Sign In to add comment