
pchell
User
Oct 19, 2009, 12:46 PM
Post #1 of 5
(1908 views)
Shortcut
|
|
placing category name in title of html page
|
Can't Post
|
|
I have an articles section editor in CMS Builder. One of the fields in the data is category, so I can categorize the different articles and show those articles in a articlelist.php file for each category. Every works except one thing, I want to take the category name and place it in the title of the html page as well as on the articlelist.php page. Right now I just have the title and heading as "article" on the page, I want it to say "Category 1 articles", "Category 2 articles", etc. for each article list. I've tried adding $record['title'] to the page but it does not work. I'm using the following codes in the header and body ---- header ---- <?php header('Content-type: text/html; charset=utf-8'); ?> <?php /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */ require_once "/usr/home/sbsheep/public_html/cms/lib/viewer_functions.php"; list($articlesRecords, $articlesMetaData) = getRecords(array( 'tableName' => 'articles', 'perPage' => '10', )); ?> -------------------- -----Body---------- <h2 class="art-PostHeaderIcon-wrapper"> <span class="art-PostHeader"><center>Articles</center></span> </h2> <div class="art-PostContent"> <?php foreach ($articlesRecords as $record): ?> <a href="<?php echo $record['_link'] ?>"><?php echo $record['pagetitle'] ?></a><br/> Thanks!
|