Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. $ch = curl_init();
  3. curl_setopt($ch, CURLOPT_URL, 'http://test.test/');
  4. curl_setopt($ch, CURLOPT_POST, true);
  5. curl_setopt($ch, CURLOPT_POSTFIELDS,'file=@' . realpath('fileyangdikirim.txt') . ';filename=namaasli.txt;');
  6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  7. curl_exec($ch);
  8. curl_close($ch);
  9. // http://gregetart.blogspot.com
  10. ?>