Netgsm gönderilen smsleri kayıt ettirme
Sms gönderdiğim numaraları ve mesajları veritbanına nası kayıt ettiririm
<?php
$xml="<mainbody>
<header>
<company>bilgilerim</company>
<usercode>bilgilerim</usercode>
<password>bilgilerim</password>
<type>1:n</type>
<msgheader>bilgilerim</msgheader>
</header>
<body>
<msg><![CDATA[{$mesaj}]]></msg>
<no>{$tel}</no>
</body>
$insert = $db->exec("INSERT INTO sms_gonderim (tel, mesaj) VALUES ('$tel','$mesaj')");
if ($insert) {
header("Location:siparis.php?durum=ok");
} else {
header("Location:siparis.php?durum=no");
}
?>
Böyle birşey oluşturdum ama işe yaramadı hocam