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 to change the values "DELTA" and "23" with PHP variables $sensor
and $temperature
.
My question is: How to insert the variables $sensor and $temperature inside the Curl command?