I am trying to use this code in a post:
"
<?php query_posts('cat=6'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php previous_post(); ?> <?php next_post(); ?>
<b><a>" rel="bookmark"><?php the_title(); ?></a></b>
<?php endwhile; else: ?>
<?php endif; ?>
"
runPHP adds a space between < & ?
But runPHP works with other php such as include
What do I need to do?
Thanks