It's probably easier to look at the form source code, rather than the data. There you'll see the various bits of the HTML form with thing like
<input type="text" name="picture"></input><input type="text" name="bubble_no"></input>
Then, assuming you know the URL, you can use the PostString function; let's say you have assigned your variables as strings that match the names of the fields in the form, and the URL a string called CakeURL, you post the data like this
Dim j As HttpJob
j.Initialise("cake",Me)
j.PostString(CakeURL,"picture=" & picture & "&bubble_no=" & bubble_no)
You can check the result in the JobDone sub. If there are a lot of fields, you might want to build the string with StringBuilder, eg
Dim form As StringBuilder
form.Initialize
form.Append("picture=")
form.Append(picture)
form.Append("&bubble_no=")
form.Append(bubble_no)
j.PostString(CakeURL,form.ToString)