13.03.2012, 06:20
I'm yet to find any information on how to make multiple post requests to a php script using HTTP, so like firstname and lastname using a SINGLE http request with HTTP();
yourscript.php?page=index&first=John&last=Smith
$first = $_REQUEST['first'];
$last = $_REQUEST['last'];