hightman/httpclient

Multi form-data issues

Opened this issue · 2 comments

This data how to send?

$BODY .= '------WebKitFormBoundary'.$BOUNDARY.$eol;
$BODY .= 'Content-Disposition: form-data; name="file"; filename="'.basename($cp).'"'.$eol;
$BODY .= 'Content-Type: image/'.pathinfo(basename($cp), PATHINFO_EXTENSION).$eol.$eol;
$BODY .= $Pic.$eol; 

Trying like this:

$request->addPostFile('file', $cp, basename($cp));
$request->addPostField('Content-Type', 'image/'.pathinfo(basename($cp), PATHINFO_EXTENSION));

Name field: file
Filename: how to add?
2nd Line Content-Type: How to add?
$Pic: image how to add?

I tried but pic not uploaded