PDO temel bilgiler için http://www.erbilen.net/pdo-kullanimi/
eknot: İstediğin bilgi burda bulunuyor hocam
<?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
Seçilen siparişlerin idsini alıp ve durumlarını alıp toplu durum değiştir kısmındakilere göre güncellemek istedim ama yapamadım
Hocam merhaba şöyle api bilgim 0 youtubede bir videodan görüp aldım kodları veritbanı oluşturdum INSERT INTO alanını nereye eklemeliyim
<-- smsgonderim.php -->
<?
function XMLPOST($PostAddress,$xmlData)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$PostAddress);
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, Array("Content-Type: text/xml"));
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlData);
$result = curl_exec($ch);
return $result;
}
$username = 'bilgilerim';
$password = 'bilgilerim';
$orgin_name = 'bilgilerim';
$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>
</mainbody>";
?>
<-- smsgonderim.php -->
Evet hocam hiçbir sorun yokmuş localde olduğu için göndermiyormuş sunucumda denedim başarılı şekilde çalışıyor ilgin iiçin teşekkürler
Merhaba hocam
İstediğim böyle bir şey yandaki checkbox dan seçip select alanında ki durumlara güncellemek istiyorum
Devamını merakla bekiyorum
kodlarını iletirsen yardımcı olalım arkadaşım