Aynı Veri sadece bir kez Görünüyor

0 Cevap php

Ben aşağıdaki çıktıyı üretir aşağıdaki kodu var: -

<?
$tablaes = mysql_query("SELECT * FROM members where id='$order[user_id]'"); 
$user = mysql_fetch_array($tablaes);
$idsd=$user['id'];
$rPaid=mysql_query("SELECT SUM(`price`) AS total FROM order_history WHERE type!='rent_referral' AND date>'" . strtotime($time1) . "' AND date<'" . strtotime($time2) . "'");
$hdPaid = mysql_fetch_array($rPaid);
$sPaid=mysql_query("SELECT SUM(`price`) AS total FROM order_history WHERE user_id='$idsd' AND type!='rent_referral' AND date>'" . strtotime($time1) . "' AND date<'" . strtotime($time2) . "'");
while ($hPaid = mysql_fetch_array($sPaid)) { 
?>

<td><?=$user['username']?></td>
<td><?=$hPaid['total']?></td>
<?  
}
?>

</tr>

Bu görünen bu http://dl.dropbox.com/u/14384295/darrenan.jpg gibi

Ben aynı veri sadece bir kez görünmesini istiyorum ..

Yalnızca bir kez onunla Vegas ve fiyatı: adı gibi.

0 Cevap