How to get all posts in wordpress:

Use the below code you will get all posts in your site

<php query_posts("showposts=-1");?
<php while(have_posts()):the_post();?
<php the_title();?>
<php the_content();?>
<php endwhile;?>