m using the latest version v3.4 and running on my localhost.
this is what i have for http://localhost/1.php so far.
Code:
<?php $static = true; include 'news/index.php'; ?> <hr> <?php $static = true; $nppage = '2'; $template = 'headlines'; include 'news/index.php'; ?> <hr> <?php include 'news/index.php'; $template = 'headlines'; ?>
the full-story is shown on the same page like this: http://localhost/1.php?id=2 and the two includes with static set to TRUE are still shown. i want to remove this two static includes as i want the full story to have a different layout with more static includes and remove the old static info.
is there a way i could show the full story to a new page say something like http://localhost/new-page.php?id=2
this way i can have new static includes and remove the old one.