i have two loop, and i'd like to paginat the results of 2end loop, why i dont work for me?
<?php
/*
Template Name: Movie
*/
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php endwhile; else : ?>
<?php include (TEMPLATEPATH . "/page.nothingfound.php"); ?>
<?php endif; ?>
<?php query_posts('meta_key=categorie&meta_value=Movie'); ?>
<?php while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php endwhile; pagination(); ?>