fork(1) download
  1. <?php
  2. $url = 'https://w...content-available-to-author-only...s.com/registration-process.php?case=introducer';
  3.  
  4. $data = [
  5. 'sponsor' => 'PA6370619',
  6. 'name' => 'Test User',
  7. 'phone' => rand(6000000000, 9999999999),
  8. 'email' => 'test' . rand(1000, 9999) . '@example.com',
  9. 'password' => 'Test@1234',
  10. 'city' => 'Test City',
  11. 'submitBtn' => 'Sign Up'
  12. ];
  13.  
  14. $options = [
  15. CURLOPT_URL => $url,
  16. CURLOPT_POST => true,
  17. CURLOPT_POSTFIELDS => http_build_query($data),
  18. CURLOPT_RETURNTRANSFER => true
  19. ];
  20.  
  21. $ch = curl_init();
  22. curl_setopt_array($ch, $options);
  23. $response = curl_exec($ch);
  24.  
  25. echo $response;
  26. ?>
Success #stdin #stdout 0.03s 26424KB
stdin
Standard input is empty
stdout
Standard output is empty