Hi Guys,
I am using this code to get my information from php as an AMS Array (I think it's an AMS Array)
If anyone can please help with getting all these values into the listBox it will be great.Code:ClickHTTPReq = luacom.CreateObject("WinHttp.WinHttpRequest.5.1") if not ClickHTTPReq then return end vars = "ian"; ClickHTTPReq:Open("GET", "http://localhost/lua/index.php?fname=".. vars, 0) ClickHTTPReq:Send(); if ClickHTTPReq.Status ~= 200 then return end phpCompanies = ClickHTTPReq.ResponseText // I tried adding this to retrieve the php return which is [echo "me, and, mydog";] unfortunatley it only displays me, and, mydog on the first line without breaking it up. ListBox.AddItem("companiesList",phpCompanies);


