آسف فأنا لم أرى موضوعك الا الآن فقط
تفضل أخوى هذا كود قمت ببرمجته فى أحد السكربتات التى قمت ببرمجتها يقوم بالشئ الذى تريده
قم بتغيير المتغير $perline برقم الوحدات التى تريد عرضها فى السطر الواحد
وارجو اكون قد افدتك
كود PHP:
<?
$sqllatest = "SELECT * from greetings_cards order by id desc limit 8";
$resultlatest = mysql_db_query($dbname,$sqllatest);
//No. of outpits per line
$perline="6";
echo "<table border='0' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='100%'>
<tr>
<td width='77%' align='center'> </td>
<td width='23%' align='center'><b><font face='Tahoma' size='2'>آخر اضافات
للبطاقات</font></b></td>
</tr>
<tr>
<td width='100%' align='center' colspan='2'>
<table border='1' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='100%'>
";
$n=0;
while($rowlatest = mysql_fetch_array($resultlatest)){
if($n==0){
echo "<tr>";
}
ضع مخرجاتك هنا
$n=$n+1;
if($n==$perline){
$slash_tr=1;
}
if($slash_tr==1){
echo "</tr>";
$slash_tr=0;
$n=0;
}
}
echo "</table>";
?>
تحياتى
Mr.Ajax