Here is a great way for people to get the pictures from the diablo 3 website quickly and easily.
1 - Get xampp or own a website that has php enabled.
2. Create count.php with the following code if you want new pictures on the diablo 3 website.
(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))):
<?php
for ($i = 1; $i <= 150; $i++) {
echo "<a href='viewcount.php?id=" . $i . "'><img src='http://eu.blizzard.com/diablo3/_images/artwork/ss" . $i . ".jpg' /></a>";
}
Or
2. If you want it posted in bbcode then create a php file called for example viewcount.php with the following code
(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))):
<?php
$id = $_GET["id"];
echo "[img]http://eu.blizzard.com/diablo3/_images/artwork/ss" . $id . ".jpg[/img]";
Thats it and you can now create your own fansite with instantly updated information.