Special characters in URL request

kohle

Active Member
Licensed User
Longtime User
Hi,
I´m getting data from an php site doing this :
print "Crédito";

In basic4pc I read the site with :

Request.New1(URL) 'Build the request.
Request.Method = "GET"
Request.TimeOut = 30000 '30 seconds
Response.New1
Response.Value = Request.GetResponse 'Call the server
result = Response.GetString 'Get the string from the response stream.
Response.Close

The result is with msgbox(result)

Crdito

Special characters are missing


How can I solve this problem
 
Top