arkadaşlar merhaba, kullandığım scriptte diyelim bir başlık açıyorsunuz, o başlığa başka bir kullanıcı yorum yapınca bildirim geliyor.

aynı şekilde sistemde beğenip beğenmeme olayı var, biri yorumunuzu beğenince bildirim göndermek istiyorum, kodları buldum ama içinden çıkamadım.

bu yorum yapınca giden bildirimin kodları:






    foreach($list as $item){
    $row = DB::getRow("SELECT h.title FROM heads as h, entries as e WHERE e.id=$item->e_id and h.id=e.h_id and e.trash=0 and h.status=1 $left_sql2");
    if(isset($row->title)){
    echo '
  • '.$row->title.'
  • ';
    }
    }
    ?>








    foreach($list as $item){
    $row = DB::getRow("SELECT h.title FROM heads as h, entries as e WHERE e.id=$item->e_id and h.id=e.h_id and e.trash=0 and h.status=1 $left_sql2");
    if(isset($row->title)){
    echo '
  • '.$row->title.'
  • ';
    }
    } ?>




yardımcı olabilecek var mı?