1535 gün önce Twitter tweet ağacı php
sorusunu cevapladı.
$id=13;
$kontrol = $db->prepare('SELECT * FROM text where id=?');
$kontrol->execute(array($id));
$gelen = $kontrol->fetch(PDO::FETCH_ASSOC);
while($gelen["ustid"] > 0) {
$id=$gelen["ustid"];
$kontrol = $db->prepare('SELECT * FROM text where id=?');
$kontrol->execute(array($id));
$gelen = $kontrol->fetch(PDO::FETCH_ASSOC);
$gelen["id"];
$liste[] = $gelen["id"];
}
$liste=array_reverse($liste);
foreach($liste as $id){
echo $id; // burda yazdırıyorum ama istediğim gibi bir sonuç yok
}
böyle bir şey yazdım.. fakat göstermiyor
1537 gün önce Button ile İnput içeriğine nasıl ulaşılır?
sorusunu cevapladı.
button val değerine at .val() olarak alabilirsin.
1538 gün önce php ile select box kategori secimi
sorusunu cevapladı.
$(document).on('change', 'input', function() {
// jquery post get işlemleri
});
1909 gün önce Upload öncesi önizleme ve resize
sorusunu cevapladı.