I will update Premium Account on this website Shareaccounts.org

<ul id=”tags_related”>
<?php
global $post;
$post_tags = wp_get_post_tags($post->ID);
if ($post_tags) {
foreach ($post_tags as $tag) {

$tag_list[] .= $tag->term_id;
}

$post_tag = $tag_list[ mt_rand(0, count($tag_list) – 1) ];

$args = array(
‘tag__in’ => array($post_tag),
‘category__not_in’ => array(NULL),
‘post__not_in’ => array($post->ID),
‘showposts’ => 6,

‘caller_get_posts’ => 1
);
query_posts($args);

if (have_posts()) {
while (have_posts()) {
the_post(); update_post_caches($posts); ?>
<li>* <a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></a></li>
<?php
}
}
else {
echo ‘<li>* Nothing</li>’;
}
wp_reset_query();
}
else {
echo ‘<li>*Nothing</li>’;
}
?>
</ul>