hi,
I'm confused about one thing.
the field
firstname is called name,
email is called email
title is called ordextra1
and medical condition is called ordextra2 in my shopping cart order page.
the same fields are called fname, lname, email and user1 in list mail.
I'm using the following codes in my form to post the data to lmp
$url = "
http://www.example.com/responder/signup.php?list=4&email=".urlencode($_POST['email'])."&fname=".urlencode($_POST['fname'])."&seq=1&del=0&overwritedupes=1";
$ch = curl_init($url);
curl_exec($ch);
curl_close($ch);
What I'm confused about is should i be using the field names from the cart form or lmp.
ie for medical condition should i use ordextra2 or user1 in the code above.
thanks
sanj