Subject: =?iso-8859-1?Q?Joe?= is =?utf-8?funny=? in prose
I've found a Doc, it is too much technical for me.
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual toolCode: 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

