Topic: Is there a way to integrate the headlines on another page ?

Hi,

I place cutenews on a folder of my website : www.mysite.com/cutenews/

Then I integrated the headlines into a page called index.php (www.mysite.com/index.php)

Is there a way to make the link point to www.mysite.com/THENAMETHATIWANT.php?subaction=showfull&id=123456789 instead of www.mysite.com/index.php?subaction=showfull&id=123456789

I would like to manually enter the "THENAMETHATIWANT.php" in the code but I don't know where to put this.

Thank you

Re: Is there a way to integrate the headlines on another page ?


Для этого воспользуйтесь переменной $PHP_SELF. Перед включением скрипта отображения новостей
    поместите в $PHP_SELF путь до скрипта, на который будет происходить переход. Ниже пример:
For this use $PHP_SELF. Before opening the news script put the trace to script  where the transition will happen, in  $PHP_SELF. An example:
   

 <?php   
        $PHP_SELF = 'THENAMETHATIWANT.php';
        include("...path_to_cutenews.../show_news.php");
    ?>
Best regards,
CN Support team