Get All The Latest Diablo 3 Pictures Right Away
Posted: September 27th, 2011, 2:19 pm
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.
Or
2. If you want it posted in bbcode then create a php file called for example viewcount.php with the following code
Thats it and you can now create your own fansite with instantly updated information.
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.
Code: Select all
<?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>";
} 2. If you want it posted in bbcode then create a php file called for example viewcount.php with the following code
Code: Select all
<?php
$id = $_GET["id"];
echo "[img]http://eu.blizzard.com/diablo3/_images/artwork/ss" . $id . ".jpg[/img]";