How to upload an image and data to php?

Hi, I need to post an image and some related data to a php for processing. Cannot use upload as the image is not to be stored, I need to publish the source code and cannot give away FTP credentials along the source.

So I am trying different ways with no success so far.
Blocks are as below:

In the active blocks the data is not transferred as POST as expected by the API.
In the disabled blocks data is transferred and image as well but in separate posts and they must go together in the same post.

Assistance welcome

The web component only can transfer text OR an image, multipart/formdata is not supported
A solution might be to convert your image into base64 format and transfer it together with the other data as text

See also

Taifun

1 Like

This thread continues here

Taifun
PS: I will close this one to not have the same discussion twice