On Sun, 1 Dec 2002, Jeremy wrote:
>
> lastName = member("Last Name").text
> firstName = member("First Name").text
> totalScore = member("Current Score").text
> infoList = ["FName":firstName, "LName":lastName, "Score":totalScore]
> netID = postNetText("www.mydomain.com\userbase.cgi", infoList)
>
I usually do
netid = postnettext("http://www.mydomain.com/userbase.cgi" &
urlencode(infolist), "")
which will then pass the url encoded proplist as
fname=whatever&lname=whatever
Notice you need to send that second "" empty string with the postnettext
in order for it to work.
Check if that fixes your variable pickup problem.
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi To post messages to the list, email
[EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for
learning and helping with programming Lingo. Thanks!]