I was sick of having to click the pop-ups one by one to check out all the cards in the set on the card list, so with OVER 9000 HOURS OF WORK IN NOTEPAD I made this:
Complete set 7: http://gingerbead.atw.hu/kepek2.php?first=743&last=802
Complete collection: http://gingerbead.atw.hu/kepek2.php?fir ... 20,729,806 (BEWARE OF SLOWDOWN)
- Code: Select all
<html>
<body>
<?php
$first= explode(",",$_GET['first']);
$last= explode(",",$_GET['last']);
For($j=0;$j<count($first);$j++)
{
For($i=$first[$j];$i<=$last[$j];$i++)
{
echo'<iframe width="32%" height="500" src="https://login.alteil.com/cardDB/detail.php?id=' . $i . '"></iframe>
';
}
}
?>
</body>
</html>
EDIT:
CARD VIEWER VER 2EX CHAMPION EDITION:
Okay, since the feedback seems to be overall positive (and after an hour of rolling around in bed I still can't sleep...) I shall now publicize my latest work (also over 9000 hours in notepad):
First, go here: https://login.alteil.com/cardDB/list2.p ... ew=wrapper
You can reach that page by going to the card list, right clicking under the query settings, and going frame>open frame in new tab. I advise you to save that page if you are like me and look at cards often.
Second, search for whatever you want to search for.
Third copy paste the following into your address bar:
- Code: Select all
javascript:links=document.getElementsByTagName("a");k=0;var store=new Array;for(i=7; i<links.length; i++){store[k]=links[i];k++;}for(i=0; i<store.length; i++){j=store[i].href.match(/\d+/);store[i].parentNode.parentNode.innerHTML="<iframe height=\"500\" width=\"453\" src=\"https://login.alteil.com/cardDB/detail.php?id="+ j +"\"></iframe>";}document.getElementById("listHeader").getElementsByTagName("tr")[0].innerHTML=""; void(0);
...and press enter. You can bookmark that script the same way as an address btw, so you don't need to copy paste it all the time.
BEWARE OF THE SLOWDOWN. Loading 800+ images can slow down computers, so try to use it in moderation.
Feel free to do whatever you want with it.




