$PHP_SELF = 'X.php';
Use this to point all of the CuteNews links to another page (such as Full Story and Comment links). This is useful if you want to show the full story on another page. In the page to which $PHP_SELF is pointing, you should add a CuteNews include code where you want to show the news. You should not add a ?var=value etc to the end of the link, use $QUERY_STRING to do that. Note that the previous/next buttons will also point to the new page.
The default page is the page where you added the news to.
Example
Codice PHP:
<?php
$PHP_SELF = "target.php"
include('show_news.php');
?>
Inside target.php you must have an include to show_news.php as well. But beware of categories. An article in category 1 will not show if the target.php contains $category=2;