I’m seeing my 2nd page displaying the exact same content as my first page.
I followed some articles online and added
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?>
<?php query_posts('showposts=16&paged=$paged'); ?>
just one line above my
<?php while (have_posts()) : the_post(); ?>
But it’s still the same… please help mee!!
edit: a link might have been helpful => http://nailian.ca/
here’s your problem:
it should be:
Notice the different quote sign?
on single quote, dollar sign is treated as is, not parsed as variable as stated in PHP doc: