1440 gün önce SweetAlert ok butonu ile hem post hem yönlendirme
sorusunu cevapladı.
swal({text:"Bilgilerin Doğruluğunu Onaylayıyormusnuz?",
buttons: {
catch: {
text: "POST",
value: "post",
},
},
})
.then((value) => {
switch (value) {
case "post":
swal("Post Butonuna Bastınız");
//ajax kodların burda
break;
default:
swal("İptal Ettiniz");
}
});
1440 gün önce SweetAlert ok butonu ile hem post hem yönlendirme
sorusunu cevapladı.
üstad şöyle yapabilirsin sweet alerte Onayla butonu eklersin ona birde value verirsin daha sonra hangi butona tıklandıysa onun değerini kontrol edip fonksiyon çalıştırırsın
1449 gün önce php ile dinamik veri tabanı oluşturulabilir mi?
sorusunu cevapladı.
tayfun abinin prototürk kanalında topluluk bölümünde istediğin gibi bir sistem vardı onun gibi birşey yapabilirsin
1456 gün önce PHP LİNK ALGILAMA
sorusunu cevapladı.
hocam bi fonksiyon buldum işe yaradı
function otomatikLink($veri) {
$veri = ' ' . $veri;
$veri = preg_replace(
'`([^"='>])((http|https|ftp)://[^s<]+[^s<.)])`i',
'$1<a href="$2">$2</a>',
$veri
);
$veri = substr($veri, 1);
return $veri;
}
1456 gün önce PHP LİNK ALGILAMA
sorusunu cevapladı.
hocam yapamadım metnin tümünü linke çeviriyor
1457 gün önce web push notificition kendi servisimizi kullanma ?
sorusunu cevapladı.
necmettin senin için buldum https://pushjs.org/# bu sitede dökümanlar var okuyamam dersende videodan izleyebilirsin
1457 gün önce PHP Instagram Son Görseller
sorusunu cevapladı.
ajax ile yapabilirsin
$.ajax({
url:"https://www.instagram.com/prototurk.official/?__a=1",
type:"GET",
headers: {
"Accept": "json"
},
withCredentials: true,
crossDomain: true,
xhrFields: {
withCredentials: true
},
dataType: "json",
success:function veri(){
resimleri buraya listelersin
}
})
json formatındaki verileri çekmek içinde
veri.graphql.user.full_name
kullanabilirsin