Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $uploadfile="";
- $ch =curl_init("");
- curl_setopt($ch, CURLOPT_POST, true);
- curl_setopt($ch, CURLOPT_POSTFIELDS,
- array('Filedata'=>"@$uploadfile",'folder'=>"//"));
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- $postResult = curl_exec($ch);
- curl_close($ch);
- print "$postResult";
- ?>
Advertisement
Add Comment
Please, Sign In to add comment