Selam arkadaşlar,
Aşağıdaki gibi bir kodum bu kodla diğer sitemden yorum numara vs çekiyorum. Ama şuan yorum çekmek yerine sadece her numaraya "Bu numaraya yorum eklendi" gibi sabit bir yorum eklemek istiyorum. Comment kısmını o şekilde nasıl düzenleyebilirim?
<?php
***
} else {
$commentQueryInsert = $comment->commentadd(str_ireplace("+","",strip_tags($numara[$i])),strip_tags($json[$properties[$i]]),$commentcase,'1',date("d.m.Y"),$commentcase);
$comtext = '<span class="badge badge-primary badge-pill">Eklendi!</span>';
}
echo '
<tr>
<td>'.str_ireplace("+","",strip_tags($numara[$i])).' '.@$numtext.'</td>
<td>'.strip_tags($numara_puan).' '.@$casetext.'</td>
<td>'.strip_tags($json[$properties[$i]]).' '.@$comtext.'</td>
</tr>
';
}
?>