Merhabalar,
Bir php dosyasına aşağıdaki komut yazdığımda çalışmıyor;
<?php
file_get_contents("http://api.iletimerkezi.com/v1/send-sms/get/?username=xx&password=xx&text=deneme&receipents=xx&sender=xx");
?>ama şöyle yazdığımda çalışıyor;
<?php
echo file_get_contents("http://api.iletimerkezi.com/v1/send-sms/get/?username=xx&password=xx&text=deneme&receipents=xx&sender=xx");
?>Böyle çalışıyor fakat ekrana sonuç döndürüyor. Ben arkada ekrana hiçbirşey vermeden çalışmasını istiyorum. Bunu nasıl yapabilirim?