嗨,我想發送3個變量每個HTTP請求到另一個站點,並希望得到響應。 check.php:帶有多個變量的PHP HTTP請求?
<html><body>
<form action="response.php" method="post">
<p>Variable1: <input type="text" name="var1" /></p>
<p>Vairable2: <input type="text" name="var2" /></p>
<p><input type="submit" /></p>
</form>
</body></html>
response.php:
<?php
$url = "http://www.testpage/api.php?authcode=";
$apikey = "xxxxxxx" ;
$request = new HTTPRequest($url$apikey&$var1&$var2, HTTP_METH_POST); //req not work !
$request->send(); //nothing happens
response = $request->getResponseBody(); //only
//got
echo "$response "; //500 error
?>
您需要連接變量... – sachleen 2013-02-10 06:36:22
'$ url。 $ apikey。 '&'。 $ var1。 '&'。 $ var2' – 2013-02-10 06:37:28