Çünkü include komutunu sayfa içi okuması için kullanabilirsiniz.Çözümü post.php dosyasındaki kaynak kodları echo komutu içine yazmalısınız.
post.php dosyasında şu var
function sendRequest($site_name,$send_xml,$header_type) {
//die('SITENAME:'.$site_name.'SEND XML:'.$send_xml.'HEADER TYPE '.var_export($header_type,true));
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$site_name);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$send_xml);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_HTTPHEADER,$header_type);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 120);
$result = curl_exec($ch);
return $result;
}
$username = '';
$password = '';
$orgin_name = 'ILETI MRKZI';
$xml = <<
{$username}
{$password}
{$orgin_name}
01/05/2013 18:00
test mesaji api denemesi 1
5312773308
EOS;
$result = sendRequest('http://api.iletimerkezi.com/v1/send-sms',$xml,array('Content-Type: text/xml'));
die(''.var_export($result,1).'
');
?>
bu dosya cep telefonuna mesaj gönderiyor sıkıntı yok
200 sayım var diyelim hergün teker teker onlara bakmaktansa otomatik çalışmasını nasıl sağlayabilişrim manuel çalışıyor ama otomatik çalışmasını istiyorumm
Cpanelde cronjobs var onunla olur mu acaba ???