897 gün önce PROTOTÜRK EKSİKLİKLERİ [GÜNCEL]
sorusunu cevapladı.
aynen engelleme gelmeli veya kirlilik yaratan kullanıcıların sorularını gizleme olmalı
900 gün önce MySQL Like 3 karakterden fazla aratınca aşırı yavaşlama problemi
sorusunu cevapladı.
ilişkili alanları index le sorun çözülür
906 gün önce Fatal error: Uncaught Error: Call to a member function rowCount() on boolean hatası
sorusunu cevapladı.
DOĞRU KULLANIMI BU
$deger=30;
$vList = $db->prepare("SELECT * FROM news where news_category=?");
$vList->execute([$deger]);
$say=$vList->rowCount();
$liste=$vList->FETCHALL();
if($say>0){
foreach ($liste as $vkey => $List) {
$Dizi[] = $List["news_title"];
}
}
908 gün önce Modal yardım
sorusunu cevapladı.
linke bunu ekle idler veri tabanından gelecek tabi
<a class="modalButton" data-id="<?php echo $id;?>">detay</a>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script>
$(document).ready(function(){
$(".modalButton").click(function(){
var id =$(this).data('id');
$.ajax({
url:"xx.php",
method:"post",
data:{id:id},
success:function(response){
//$(".modal-body").html(response);
//$("#dynamicModal").modal('show');
//Swal.fire("Error deleting!", (response), "error");
Swal.fire({
title: '<strong>HTML <u>example</u></strong>',
html:
(response),
showCloseButton: true,
showCancelButton: true,
focusConfirm: false,
width: 800,
confirmButtonText:
'<i class="fa fa-thumbs-up"></i> Close!',
confirmButtonAriaLabel: 'Thumbs up, great!',
})
}
})
})
})
</script>
xx.php ye id gonderecek oradanda sorgulama yaptırıp modalda yazdırabılırsın
914 gün önce inner join search
sorusunu cevapladı.
buradan sora sora siteyide bitirdin helal olsun vallaha :)
GROUP BY KULLANACAKSIN
916 gün önce JSON Post
sorusunu cevapladı.
https://stackoverflow.com/questions/61903202/issue-feeding-mapbox-geojson-data-from-ajax-request
burada içeri aktarma var
919 gün önce Resim tipi Sorgulama
sorusunu cevapladı.
FONKSİYON YAZDIM LAKIN VEROT UPLOAD KULLANIRSAN DAHA GUVENLI VE ISLEVSEL
function uzanti($dosya_adi) {
return substr(strrchr($dosya_adi,'.'),1);
}
echo uzanti("img/foto.jpg");
921 gün önce PHP Verileri Yazdırırken Manuel Sıralama Nasıl Yapılır?
sorusunu cevapladı.
sıra numarası ver extra orber by kullan
ORDER BY baslik ASC, sira DESC Gibi