URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       Hack Community
  HTML https://roshacks.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: Web and Scripting
       *****************************************************
       #Post#: 515--------------------------------------------------
       [PHP] Upload file on site using cURL (WebDav)
   DIR By: pipo1337
       Date: May 13, 2018, 7:31 am
       ---------------------------------------------------------
       --- Code ---
       <php
       $ch = curl_init();
       
       curl_setopt($ch, CURLOPT_URL, "
  HTML https://example.com/upload");
       curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
       $post = array(
       "file1" => "@" .realpath("file1.txt"),
       "file2" => "@" .realpath("file2.txt")
       );
       curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
       curl_setopt($ch, CURLOPT_POST, 1);
       
       $headers = array();
       $headers&#91;] = "Content-Type:
       application/x-www-form-urlencoded";
       curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
       
       $result = curl_exec($ch);
       if (curl_errno($ch)) {
       echo 'Error:' . curl_error($ch);
       }
       curl_close ($ch);
       ?>
       --- End Code ---
       *****************************************************
       Page 1 of 1