<!-----------分类--------> <?php while($r=mysql_fetch_array($res)) { ?> <div class="container"style="background:url(<?php echo $r["url"]; ?>)"> <div class="container_tiem"><A href="xjcartoon_nav.php?id=<?php echo $r["id"]?>"><?php echo $r["title"];?></A></div> <div class="container_txt"> <?php $idd=$r["id"]; $sql_con="SELECT title,id,xj,xj_nav,URL FROM t_dm_content where xj=2 and xj_nav='$idd'ORDER BY id DESC LIMIT 4"; $res_s = $mysql->crud($sql_con); while($r_s=mysql_fetch_array($res_s)) { ?> <dl> <dt><A href="show.php?id=<?php echo $r_s["id"]; ?>" target="_blank"><img src="<?php echo $r_s["URL"]; ?>" width="163" height="126" /></A></dt> <dd><A href="show.php?id=<?php echo $r_s["id"]; ?>" target="_blank" ><?php echo $r_s["title"]; ?></A></dd> </dl> <?php }?> </div> </div> <?php } ?> <!---------结-------->