arkadaslar resim.php dıye bı dosyada uye resımlerını alt alta sıralıyo ama ben yan yana olmasını ıstıyom ve 8 tane goruntulemesını ıstıyorm nasıl duzenleyebılırım kodlar aşagıda
yardım edecek kımse yok mu
PHP:
<?php
/**********************************
* Get Latest Pictures
**********************************/
$get_latest_pictures = mysql_query("SELECT * FROM joovili_pictures
WHERE picture_status='1'
ORDER BY picture_id DESC LIMIT 10");
if (mysql_num_rows($get_latest_pictures)==0){
} else {
while ($got_latest_pictures = mysql_fetch_array($get_latest_pictures)){
$get_info = sql_row("SELECT * FROM joovili_users
WHERE username = '".$got_latest_pictures['picture_username']."' ");
$latest_picture = 'include/images.inc.php?picture=../' . $got_latest_pictures['picture_path'];
?>
<table width="81" height="111" border="0" cellpadding="0" cellspacing="0" background="themes/default/lola_images/017-1.png">
<tr>
<td width="72" align="center"><a><img src="<?php echo $latest_picture;?>" width="38" height="38" border="2" /></a></td>
</tr>
<tr>
<td align="center"><a href="my_profile_pictures.php?username=<?php echo $got_latest_pictures['picture_username'];?>" class=" LinkMavi12">
<?php echo $got_latest_pictures['picture_username'];?></a></td>
</tr>
</table>
<?php } } ?>
yardım edecek kımse yok mu