so… with this code `<table><tr>
<?php while (have_posts()) : the_post(); ?>
<td>
” rel=”bookmark”>
<?php the_title(); ?>
</td>
<?php endwhile; ?></tr></table>`
the result is this -> http://img264.imageshack.us/img264/9474/fpicwt0.jpg
what i want to do , is to automatically fill the others <TD> with next posts
look … you didnt understand … i want it to show my latest posts in that order…
i`ve done this but just for a <tr> in the table , like this
<table><tr>
<?php while (have_posts()) : the_post(); ?>
<td>
<a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?></a>
</td>
<?php endwhile; ?></tr></table>
and it works but it will show my post like this -> http://img205.imageshack.us/img205/5581/pic3ks3.jpg
… i want to make it like i said in first post 🙁