Awards Images dont show in profiles

I added 5 or 6 awards and images to them but they dont show when i “award” them lol

Any known issues?

Cheers, Dave.

<li><?php echo $award->name ?></li>

I edited to <li><?php echo $award->image ?></li> and now the full url to the image shows, so im guessing it needs some other variable to fetch the image?

You have to put it in an image tag

<img src=“<?=php echo $award->image?>” />

<ul>

<?php foreach($allawards as $award){ ?>

<li><img src=“<?=php echo $award->image?>” /></li>

<?php } ?>

</ul>

Like that? because i get an error on the page with that

Parse error: syntax error, unexpected T_ECHO, expecting ‘,’ or ‘;’ in /home/easternv/public_html/eva/lib/skins/eva/profile_main.tpl on line 79

<?=php Should be <?php

cheers Nabeel!!!