Die Naruto Suche einbinden (Beispiel)
<html>
<head>
      <title>Naruto Kartensuchmaschine</title>
</head>
<body>

      <table width="98%" align="center" cellspacing="10" cellpadding="10" border="0">
      <tr valign="top">
            <td width="200" bgcolor="orange">
                  <b>Kartenname:</b>
                  <form method="get" action="http://www.tcg-zone.de/search/index.php" target="carddb">
                        <input type="hidden" name="section" value="naruto" />
                        <input type="text" name="searchword" value="" />
                        <input type="submit" name="submit" value="suchen" />
                  </form>
            </td>
            <td style="padding: 0;">
                  <iframe name="carddb" width="100%" height="700" border="0" frameborder="0" src="http://www.tcg-zone.de/search/index.php?section=naruto"></iframe>
            </td>
      </tr>
      </table>

</body>
</html>
Die One Piece Suche einbinden (Beispiel)
<html>
<head>
      <title>One Piece Kartensuchmaschine</title>
</head>
<body>

      <table width="98%" align="center" cellspacing="10" cellpadding="10" border="0">
      <tr valign="top">
            <td width="200" bgcolor="#5f5fFF">
                  <b>Kartenname:</b>
                  <form method="get" action="http://www.tcg-zone.de/search/index.php" target="carddb">
                        <input type="hidden" name="section" value="onepiece" />
                        <input type="text" name="searchword" value="" />
                        <input type="submit" name="submit" value="suchen" />
                  </form>
            </td>
            <td style="padding: 0;">
                  <iframe name="carddb" width="100%" height="700" border="0" frameborder="0" src="http://www.tcg-zone.de/search/index.php?section=onepiece"></iframe>
            </td>
      </tr>
      </table>

</body>
</html>
Die World of Warcraft Suche einbinden (Beispiel)
<html>
<head>
      <title>World of Warcraft Kartensuchmaschine</title>
</head>
<body>

      <table width="98%" align="center" cellspacing="10" cellpadding="10" border="0">
      <tr valign="top">
            <td width="200" bgcolor="brown">
                  <b>Kartenname:</b>
                  <form method="get" action="http://www.tcg-zone.de/search/index.php" target="carddb">
                        <input type="hidden" name="section" value="wow" />
                        <input type="text" name="searchword" value="" />
                        <input type="submit" name="submit" value="suchen" />
                  </form>
            </td>
            <td style="padding: 0;">
                  <iframe name="carddb" width="100%" height="700" border="0" frameborder="0" src="http://www.tcg-zone.de/search/index.php?section=wow"></iframe>
            </td>
      </tr>
      </table>

</body>
</html>
Das Formular (Beispiel)
<b>Kartenname:</b>
<form method="get" action="http://www.tcg-zone.de/search/index.php" target="carddb">
      <input type="hidden" name="section" value="naruto" />
      <input type="text" name="searchword" value="" />
      <input type="submit" name="submit" value="suchen" />
</form>
Das Frame (Beispiel)
<iframe name="carddb" width="100%" height="700" border="0" frameborder="0" src="http://www.tcg-zone.de/search/index.php?section=naruto"></iframe>