-2

lib で PHP をコーディングします。

$spellquery = doquery("SELECT id,name,type FROM {{table}}","habilidades");
        $userspells = explode(",",$userrow["spells"]);
        $userrow["magiclist"] = "";
        while ($spellrow = mysql_fetch_array($spellquery)) {
            $spell = false;
            foreach($userspells as $a => $b) {
                if ($b == $spellrow["id"]) { $spell = true; }
            }
            if ($spell == true) {
                $userrow["magiclist"] .= "<a href=\"index.php?do=habilidad:".$spellrow["id"]."\"><img border=0 src=\"estilo/imagenes/skills/".$spellrow["name"].".png\" ></a><br />";
            }
        }
        if ($userrow["magiclist"] == "") { $userrow["magiclist"] = "none"; }

テンプレート ページのコード:

 <div>

    {{magiclist}}

    </div>

ページに表示: http://lordehsa.5gbfree.com/estilo/imagenes/skills/out.JPG

これを作りたい : http://lordehsa.5gbfree.com/estilo/imagenes/skills/out2.jpg

4

1 に答える 1

0

削除<br />するだけで、画像を一列に表示できます。

于 2013-11-09T09:19:19.473 に答える