Well it would be nice if we could use POST instead of GET methods for data in Graal to web server interaction.
In theory I'd do it like this..
PHP Code:
temp.postdata = {
{"testvar", "testvalue"},
{"othervar", "othervalue"}
};
temp.req = requesturl(url, postdata);
Then on the webserver
PHP Code:
<?php
echo("testvar = " . $_POST["testvar"] . "<br>");
echo("othervar = " . $_POST["othervar"]);
?>
After all that would return..
PHP Code:
testvar = testvalue
othervar = othervalue