Yes that’s paradox !
……
/*this post appear */
<?php if ($post->ID==5) : if(query_posts(‘p=7’)): the_post(); the_content(); endif; endif;?>
/* bottom – this post disapper */
<?php if ($post->ID==5) : if(query_posts(‘p=23’)): the_post(); the_content(); endif; endif;?>
/*i want display display the content two post number 7 and 23 on the post 5 – what am i doing wrong ? thanks for advice */