I have that Curl command works fine
$ch = curl_init('http://api.pushingbox.com/pushingbox?devid=vB9C6311111098CB&sensor=DELTA&temperature=23');
curl_exec ($ch);
curl_close ($ch);
But I need change de fix values DELTA and 23 to follow php variables
$sensor $temperature
My question is: How insert the variables $sensor and $temperature inside Curl command?
Thanks