Subject: =?iso-8859-1?Q?Joe?= is =?utf-8?funny=? in prose
I've found a Doc, it is too much technical for me.

Code: Select all
Structure pair
name.s
value.s
EndStructure
NewList Parameters.pair()
URL$ = Right(URL$, Len(URL$)-FindString(URL$, "?", 1))
i = 1
ThisPair$ = StringField(URL$, i, "&")
While ThisPair$
AddElement(Parameters())
Parameters()\name = StringField(ThisPair$, 1, "=")
Parameters()\value = StringField(ThisPair$, 2, "=")
i+1
ThisPair$ = StringField(URL$, i, "&")
Wend