**Problem** `$content` is not all the time only a primitive data-type. It can be an `FormData` array. You can convert it simply with [`http_build_query`](https://www.php.net/manual/en/function.http-build-query.php). **Target** https://github.com/michaelfranzl/no.php/blob/1c2eb300c797d83eb9bafff57e5ab12fedbcd89f/no.php#L106 **Fix** ```php $data .= $eol; if(is_array($content)) { $data .= http_build_query($content); } else { $data .= $content; } $data .= $eol; ```
Problem
$contentis not all the time only a primitive data-type. It can be anFormDataarray. You can convert it simply withhttp_build_query.Target
no.php/no.php
Line 106 in 1c2eb30
Fix