while ($rows=sqlsrv_fetch_array($stmt))
{
$autoincrement++;
if ($rows[1] == 'ACROBAT')
{
$rows[1] = '<img src="img/class/icons/acrobat.png" height="60" width="60"> '.$rows[1].' <?php echo $rows[1];?>';
}
if ($rows[1] == 'PRIEST')
{
$rows[1] = '<img src="img/class/icons/priest.png" height="60" width="60"> '.$rows[1].' <?php echo $rows[1];?>';
}
if ($rows[1] == 'SWORDMASTER')
{
$rows[1] = '<img src="img/class/icons/swordsman.png" height="60" width="60"> '.$rows[1].' <?php echo $rows[1];?>';
}
if ($rows[1] == 'MERCENARY')
{
$rows[1] = '<img src="img/class/icons/mercenary.png" height="60" width="60"> '.$rows[1].' <?php echo $rows[1];?>';
}
if ($rows[1] == 'ALCHEMIST')
{
$rows[1] = '<img src="img/class/icons/alchemist.png" height="60" width="60"> '.$rows[1].' <?php echo $rows[1];?>';
}
echo
'
<tr id=io>
<td> '.$autoincrement.' </td>
<b> <td> <a style = "color:#AFA;" href="pvpprofile"> '.$rows[0].'</a> </td> </b>
<td> '.$rows[1].'</td>
<td> '.$rows[2].' </td>
<!-- <td> '.$rows[3].' </td>
<td> '.$rows[4].' </td>
<td> '.$rows[5].' </td> -->
</tr>
';
}
如何用 if 语句替换底部的 $rows[1] ?我目前正在尝试将图标绑定到我的 sql 结果。我有大约 100 个案例,我认为这个 if 语句也不会非常有效,但尽管如此,我还是想了解如何实现添加这些图标。
TLDR:如何使我的 if 语句有效地进入最后一个 echo 语句?在此之前,我的 SQL 查询中有大约 100 个案例,是否可以在其中打印 ECHO 语句并解决所有问题?
九州编程