Add Image With Changeable Link in Custom Field [closed]

I made this code with help from Google search. And it works fine. I added this code in single.php bottom of the post. Now, I simply add link in every post but image are same. Thanks. 🙂

<?php if( get_post_meta($post->ID, "imglink", true) ): ?>

<p><a href="<?php echo get_post_meta($post->ID, "imglink", true); ?>"><img src="http://-------------.png"></a></p>

<?php endif; ?>