placing category name in title of html page
5 posts by 2 authors in: Forums > CMS Builder
Last Post: October 20, 2009 (RSS)
By (Deleted User) - October 19, 2009
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
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!
Re: [pchell] placing category name in title of html page
By Chris - October 20, 2009
I have a couple of questions for you:
How does your articlelist.php page know which category to display? Are you linking to "articlelist.php?category=2"?
Also, how is your Articles' "category" field configured? Do you have a hard-coded list of options or are you using "Get options from database (advanced)"?
Chris
Re: [chris] placing category name in title of html page
By (Deleted User) - October 20, 2009
I am linking to the articles with this code "[font "Verdana"]"articlelist.php?category=2"
[font "Verdana"]As far as the categories are concerned, its a static hard coded dropdown list that I created to choose from. Currently it has 3 categories in it.
[font "Verdana"]Thanks!
[font "Verdana"]
Re: [pchell] placing category name in title of html page
By Chris - October 20, 2009
How about this?
<title>Category <?php echo htmlspecialchars($_REQUEST['category']) ?> articles</title>
I hope that helps. Please let me know if you have any more questions.
Chris
Re: [chris] placing category name in title of html page
By (Deleted User) - October 20, 2009
That worked great!