Hello Friend I just need your help to add image in my php file instead of text :
Here is my file's php code
PHP Code: 
<?php if ( is_single() ) { ?>
    <div class="navigation" style="border-top:0;">
        <div class="alignleft"><?php previous_post_link('%link','&laquo; Previous Post'); ?></div>
        <div class="alignright"><?php next_post_link('%link','Next Post &raquo;'); ?></div>
        <div style="clear:both;"></div>
    </div>
<?php } else { ?>
    <?php if ( function_exists('wp_pagenavi') ) { ?>
        <?php wp_pagenavi(); ?>
    <?php } else { ?>
        <div class="navigation">
            <?php posts_nav_link('''&laquo; Previous Page''Next Page &raquo;'); ?>
        </div>
    <?php ?>
<?php 
?>
now i want to add a image (previouspost.png) instead of &laquo; Previous Post and 2nd image (nextpost.png) instead of Next Post &raquo;

Hope you will help me...
ashutariyal Reviewed by ashutariyal on . [Req] How to Add Image instead of Text in PHP Hello Friend I just need your help to add image in my php file instead of text : Here is my file's php code <?php if ( is_single() ) { ?> <div class="navigation" style="border-top:0;"> <div class="alignleft"><?php previous_post_link('%link','&laquo; Previous Post'); ?></div> <div class="alignright"><?php next_post_link('%link','Next Post &raquo;'); ?></div> <div style="clear:both;"></div> </div> <?php } else { ?> <?php if ( Rating: 5