New question #63277 on phpns: https://answers.launchpad.net/phpns/+question/63277
So, I would like to have index.php page that only shows the titles of the articles, and when I click the title it will show the full article in fullarticles.php. Can this be done? ***************** I have made a template called "headlines" that sounds like this: <div> <h1> <a href="{article_href}" style="text-decoration: none;">{title}</a></h1> <h2>{date} | Kommentit: <strong><a href="{article_href}#comments">{comment_count}</a></strong></h2> </div> <div> <h1>{sub_title}€</h1> </div> ******************* Then I have this code in my index.php: ?php /* This file is used to generate articles managed by the phpns system. Place this code wherever you want your articles displayed on your website. The page that this code is placed in should have a .php extension. */ $phpns['category'] = '33'; $phpns['limit'] = '20'; $phpns['template'] = '9'; $phpns['script_path'] = 'fullarticles.php'; //after variable declaration(s), include shownews.php include("/var/www/vhosts/mypath/uutiset/shownews.php"); ? ******************* -- You received this question notification because you are a member of Phpns-team, which is an answer contact for phpns. _______________________________________________ Mailing list: https://launchpad.net/~phpns-team Post to : phpns-team@lists.launchpad.net Unsubscribe : https://launchpad.net/~phpns-team More help : https://help.launchpad.net/ListHelp