Advertisement
Guest User

Untitled

a guest
Jun 26th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $ch = curl_init("http://35.237.180.252:5000/plot?filename=train.csv");
  3. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  4. curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  5. $content = curl_exec($ch);
  6. echo $content;
  7. curl_close($ch);
  8. ?>
  9. ~                                                                        
  10. ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement