I’m sending data via LoadVars to a page. I am not sure how to visit that page after sending the data and having the data show up. The only thing I want to stay away from is adding my vars to the end of the URL and then accessing them via GET. Are there any other ways you guys can think of?
My code:
sendData = new LoadVars();
sendData.myVar="Test";
sendData.send("test.php", sendData, "POST");
Thanks!