Thank you for your suggestions guys. The thing is that I solved my problem with using this function( I found this on AppGameKit website)
Function GetFromWeb(URLPath$)
Host$="www.????.com"
Response$=""
if GetInternetState()=1
iHTTP=CreateHTTPConnection()
SetHTTPVerifyCertificate( iHTTP, 0 )
iSecure=0
szUser$=""
szPass$=""
if SetHTTPHost( iHTTP, Host$, iSecure, szUser$, szPass$ )=1
if SendHTTPRequestASync( iHTTP, URLPath$ )=1
do
ret=GetHTTPResponseReady( iHTTP )
if ret=-1 then exit //Cancel
if ret=1 then exit //Ready
print("wait ...")
sync()
loop
if ret=1
Response$=GetHTTPResponse( iHTTP )
endif
endif //Get
CloseHTTPConnection( iHTTP )
endif //Host
DeleteHTTPConnection( iHTTP )
endif //Internet
endfunction
For url path I write something similar to "example.php?name="john"&id=5" and it worked. Plus with this function now I am able to get the output of my php files. So with other php files, I can get my spesific data with query functions.