répondreJe l'ai testé, mais cela n'a pas fonctionné et il ne peut pas être affiché.
Je souhaite que la sortie de talents recommandée soit de 5 colonnes x 4 lignes. Le code source d'Empire CMS est le suivant.
<table width="100%" border="0" Cellpacing="0" cellpadding="0" class="box">
<tr>
<td><ul>
[e:boucle={30,10,0,0}]
<largeur du tableau="100%" border="0" cellpacing="0">
<tr>
<td width="8" height="19"><img src="[!--news.url--]skin/default/images/dd1.gif" width="5" height="5 " /></td>
<td><a href="<?=$bqsr['titleurl']?>" target="_blank">
<?=DoTitleFont($bqr[titlefont],esub($bqr[title],38))?>
</a> |<a href="<?=$bqsr['titleurl']?>"
<?=$bqr[sexe]?>
|
<?=$bqr[âge]?>
|
<?=$bqr[éducation]?>
</a> <a href="<?=$bqsr['titleurl']?>">|
<?=$bqr[type]?>
≪/a>≪/td>
<td align="right"><span class="STYLE11">
<?=date('m-d',$bqr[newstime])?>
</span></td>
≪/tr>
<tr>
<td height="2" colspan="3" background="skin/default/images/hline.gif"></td>
≪/tr>
</tableau>
[/e:boucle]
</ul></td>
≪/tr>
</tableau>
方法1 table>tr*5>td{$}*4
方法2
<?php
echo "<table border='1px solid' cellpacing ='0' cellpadding ='10' bgcolor= 'skyblue'>";
pour ($i=0; $i < 5; $i++) {
echo "<tr>";
pour ($j=0; $j < 4 ; $j++)
{
echo "<td>".$j."</td>";
}
écho "</tr>";
}
écho "< ;/table>" ;
?>