For those that might experience this issue in v16
I notice strange block chars appearing in my highscore tables at the start and end of a netwebget$.
It must be unicode issue or something...
Below is my fix for the issue..
scoretable$=NETWEBGET$("www.domain.com","/scoresxxxxxx.php",80,512,4000)
// cleanup string
LOCAL mstr$
FOR x = 1 TO LEN(scoretable$)
mstr$=MID$(scoretable$,x,1)
IF ASC(mstr$)<32 OR ASC(mstr$)>96
IF mstr$="|" THEN newscore$=newscore$+mstr$
ELSE
newscore$=newscore$+mstr$
ENDIF
NEXT