Hello all and thanks in advance for any help.
I'm trying to emulate the behaviour of a Javascript form. I'm using curl to post data but there is one piece of data I don't know how to translate from the originale form:
<input type="image" src="/image.gif" border="0" name="colSelectedDay[0]" align="left"/>
How can I render this information in a form that can be passed using curl? I tried to manually post the form to a PHP page I created and read the post data with array_keys($_POST). What comes out is:
varname: colSelectedDay
varvalue: Array ( [1] => 20 )
I tried to urlencode but it needs a string. Anyone has any idea?
Thanks!