- maskotxd
- Katılım
- 29 May 2022
- Mesajlar
- 377
- Tepkime puanı
- 62
- Şehir
- İstanbul
Neden böyle bir hata alıyorum? Nasıl çözebilirim?
Hata :
Kod ( 198. satır ve çevresi ) :
echo '<td width="175" class="country"><span data-toggle="tooltip" title="' . $node->operator . '">' . $node->country . ' ' . $node->name{3} . '</span></td>'; Kısmı 198. satırın olduğu kısımdır.
Hata :
Kod ( 198. satır ve çevresi ) :
PHP:
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Server</th>
<th scope="col">Result</th>
<th scope="col">TTL</th>
</thead>
<tr>
<tbody>
<?php
if( ! empty($nodes)) {
foreach($nodes as $node) {
echo '<tr id="' . $node->name . '">';
echo '<td width="175" class="country"><span data-toggle="tooltip" title="' . $node->operator . '">' . $node->country . ' ' . $node->name{3} . '</span></td>';
echo '<td class="result"></td>';
echo '<td width="50" class="ttl"></td>';
echo '</tr>';
}
}
?>
</table>
</div>
echo '<td width="175" class="country"><span data-toggle="tooltip" title="' . $node->operator . '">' . $node->country . ' ' . $node->name{3} . '</span></td>'; Kısmı 198. satırın olduğu kısımdır.