mattsmith Posted July 21, 2016 Report Share Posted July 21, 2016 What do i need to change to have the rank image showing? <td style="border-bottom:1px solid #eee; border-top:1px solid #eee;"><b>Your Rank</b></td> <td style="border-bottom:1px solid #eee; border-top:1px solid #eee"><?php echo $userinfo->rank;?></td> Quote Link to comment Share on other sites More sharing options...
Moderators servetas Posted July 21, 2016 Moderators Report Share Posted July 21, 2016 Replace this: <?php echo $userinfo->rank; ?> with this: <img src="<?php echo $userinfo->rankimage; ?>" alt="<?php echo $userinfo->rank; ?>" title="<?php echo $userinfo->rank; ?>" /> If you are using Auth to parse the data to $userinfo, it is going to work. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.