tags:

views:

32

answers:

1

Hi, is it possible to fill a remote form with the desired data ?

Remote form

<input type=text name=uploads[0] id=attachId0 size=30 onchange="checkUploadFile(this);"><input type=button value="del" id=idAttachOper0 onclick="return delInput('idfilespan','0')"><br id=idAttachBr0>
+1  A: 

You will have to know where that form sends its data before you can send it, because you will have to emulate a form. cURL has the ability to send POST and GET data to the server via many different option settings. check out this page for all the settings. Anything that start with CURLOPT_POST... is a good bet.

Scott M.