saintx adlı üyeden alıntı: mesajı görüntüle
@wika; şu kısmı
date('jS F Y h:i:s A (T)', $unixgettime['time']);
şu şekilde
date('jS F Y h:i:s A (T)', $unixgettime);
düzenleyip deneyebilir misiniz?
aynı sorun.. şöyle izah edeyim mesela

('jS F Y h:i:s A (T)', $unixgettime['time']); yerine
"fghhjjklkşl"; yazıyorum , döngü içinde değişen birşey yok. kaynak kod da beliriyor fghhjjklkşl yazısı. ilgili kodları hepsi şu:

 <?php
               $bold_txxs = "";
               foreach($Bytecoind_List_Transactions as $Bytecoind_List_Transaction) {
                  //if($bold_txxs=="") { $bold_txxs = "color: #666666; "; } else { $bold_txxs = ""; }
                  if($Bytecoind_List_Transaction['category']=="send") { $tx_type = '<b style="color: #FF0000;">Sent</b>'; } else { $tx_type = '<b style="color: #01DF01;">Received</b>'; }
                  echo '<tr>
                           <td align="left" style="'.$bold_txxs.'padding: 3px;" nowrap>'.date('jS F Y h:i:s A (T)',$Bytecoind_List_Transaction['time']).'</td>
                           <td align="left" style="'.$bold_txxs.'padding: 3px;" nowrap>'.$Bytecoind_List_Transaction['address'].'</td>
						   <td align="right" style="'.$bold_txxs.'padding: 3px;" nowrap>'.$tx_type.'</td>
                           <td align="right" style="'.$bold_txxs.'padding: 3px;" nowrap>'.abs($Bytecoind_List_Transaction['amount']).'</td>
                           <td align="right" style="'.$bold_txxs.'padding: 3px;" nowrap>'.abs($Bytecoind_List_Transaction['fee']).'</td>
                           <td align="right" style="'.$bold_txxs.'padding: 3px;" nowrap>'.$Bytecoind_List_Transaction['confirmations'].'</td>
                           <td align="right" style="'.$bold_txxs.'padding: 3px;" nowrap><a href="http://coinchain.info/tx/'.$Bytecoind_List_Transaction['txid'].'" target="_blank">Info</a></td>
                        </tr>';
               }
               ?>