I need to submit several variables via a call post and get the results back in to a miva page
for example the url I need to call in would look like this as a get in a web browser
on mypage there are many more form fields. but I only need to use 3 of them.
using toolkits example documentation I am shown this:
But how do I get my values of name1, name2 and name3 into the right form fields...
since there are many other form input fields on mypage... this doesn't work as the destination won't know what goes where.
do I do this?
how exactly do I call in a url that i need to send multiple variables to in order to get the right data out of it to pull into my miva screen? How do the name value pairs get passed?
Signed,
Confused
for example the url I need to call in would look like this as a get in a web browser
Code:
http://www.mydomain.com/mypage.php?name1=bill&name2=bob&name3=sam
using toolkits example documentation I am shown this:
Code:
[COLOR=#FF0000][FONT=Arial]<mvt:item name="toolkit" param="callurl|sample|http://www.mydomain.com/subscribe.php|POST|sublist,ship_lname,ship_email" />[/FONT][/COLOR]
But how do I get my values of name1, name2 and name3 into the right form fields...
since there are many other form input fields on mypage... this doesn't work as the destination won't know what goes where.
Code:
[COLOR=#FF0000][FONT=Arial]<mvt:item name="toolkit" param="callurl|sample|http://www.mydomain.com/mypage.php|POST|bill,bob,sam" />[/FONT][/COLOR]
Code:
[COLOR=#FF0000][FONT=Arial]<mvt:item name="toolkit" param="callurl|sample|http://www.mydomain.com/mypage.php|POST|name1=bill,name2=bob,name3=sam" />[/FONT][/COLOR]
how exactly do I call in a url that i need to send multiple variables to in order to get the right data out of it to pull into my miva screen? How do the name value pairs get passed?
Signed,
Confused
Comment