mattsmith Posted July 21, 2016 Report 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
Moderators servetas Posted July 21, 2016 Moderators Report 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
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.