ForsakenGod 0 Posted June 23, 2010 Hello , I would really like to know how could i pass variables to an online PHP file somethink like status.php?key=15151515415&status=down I would like to actually do this without user seing it ( like not opening it in explorel or firefox or wahtever) Is there some say to do this ? Thanks in advance ! Share this post Link to post Share on other sites
Richard Robertson 187 Posted June 23, 2010 Why does this look so suspiciously like a key logger? Share this post Link to post Share on other sites
ForsakenGod 0 Posted June 23, 2010 (edited) Its not an key logger lol . Anyway i think i ve found the answer here #include <WindowsConstants.au3> GUICreate("Please Input Question", 260, 50, 193, 125, -1, BitOR($WS_EX_TOOLWINDOW, $WS_EX_WINDOWEDGE)) $i = GUICtrlCreateInput("Enter Question Here", 16, 8, 185, 21) $b = GUICtrlCreateButton("OK", 216, 16, 33, 25, 0) GUISetState(@SW_SHOW) While 1 If GUIGetMsg() = $b Then $WinHttpReq = ObjCreate("WinHttp.WinHttpRequest.5.1") $s_URL = "http://nick761.mango12.com/oodles/api.php?clue=" & GUICtrlRead($i) $WinHttpReq.Open("GET", $s_URL, False) $WinHttpReq.Send() $c = $WinHttpReq.ResponseText MsgBox(1, "Answer", $c) EndIf WEnd If anyone got stuck on the same point as i did Edited June 23, 2010 by ForsakenGod Share this post Link to post Share on other sites
Richard Robertson 187 Posted June 23, 2010 InetGet is a much simpler solution. Share this post Link to post Share on other sites