Delete a remote file using Curl
Hello, First a little about my project…I have a form, that uses curl to upload an image to a remote computer using Curl. The code is php and uses ftp to upload the file. The upload script that I am using is working great and is located below: $ch = curl_init(); $localfile = $_FILES[’touchimage’][’tmp_name’]; $fp = fopen($localfile, ‘r’); curl_setopt($ch, CURLOPT_URL, ‘ftp://’.$ftp_user_name.’:’.$ftp_user_pass.’at’.$ipaddr.’:12458/right_frame/middle_frame/images/’.$filenm.'’); curl_setopt(…
Original post by Freelancer.com - New Projects