<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title></title>
        <link>https://interactivetools.com/forum/forum-search.php?k=user%3Awadeos</link>
        <description></description>
        <pubDate>Tue, 26 May 2026 09:04:18 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Awadeos&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Damon] Linking to specific blog posts</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202141#post2202141</link>
          <description><![CDATA[Thanks Damon, will have a go and get back to you if I get stuck.<br />]]></description>
          <pubDate>Mon, 01 Mar 2010 19:18:22 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202141#post2202141</guid>
        </item>
                <item>
          <title>Re: [Damon] Linking to specific blog posts</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202039#post2202039</link>
          <description><![CDATA[Hi Damon,<br /><br />I have created a blog in section editor and within that blog have created a list field with all the Authors names. So when they add a new entry they just click on the drop down list and pick their name. <br /><br /><br />&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  <br />  require_once &quot;/home/nzph/public_html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($ridersblogRecords, $ridersblogMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'ridersblog',<br />    'perPage'     =&gt; '7',<br />  ));<br /><br />?&gt;<br />&lt;?php <br />  function maxWords($textOrHtml, $maxWords) {  <br />  $text = strip_tags($textOrHtml);  <br />  $words = preg_split(&quot;/\s+/&quot;, $text, $maxWords+1);  <br />  if (count($words) &gt; $maxWords) { unset($words[$maxWords]); }  <br />  $output = join(' ', $words);  <br />  <br />  return $output;  <br />  }  <br />?&gt;<br /><br />&lt;!-- blog left column --&gt;<br />&lt;div id=&quot;LC_blog&quot;&gt;<br /><br />  &lt;!-- STEP2: Display Records (Paste this where you want your records to be listed) --&gt;<br />    &lt;h1&gt;Rider's Blog&lt;/h1&gt;<br />    &lt;?php foreach ($ridersblogRecords as $record): ?&gt;<br />    &lt;p span class=&quot;headline_blog&quot;&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;/span&gt;<br />    &lt;p&gt;&lt;?php echo date(&quot;D, M jS, Y g:i:s a&quot;, strtotime($record['date'])) ?&gt;&lt;/p&gt;<br />    &lt;p&gt;&lt;?php echo $record['author'] ?&gt;&lt;/p&gt;<br /><br />      &lt;!-- For date formatting codes see: http://www.php.net/date --&gt;<br />      &lt;p&gt;&lt;?php  echo maxWords($record['content'], 100); ?&gt; . . . &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;Read More&lt;/a&gt;&lt;/p&gt;<br />      <br />&lt;br/&gt;<br /><br /><br />      &lt;hr size=&quot;1&quot; noshade=&quot;noshade&quot;/&gt;<br />    &lt;?php endforeach; ?&gt;<br /><br />    &lt;?php if ($ridersblogMetaData['invalidPageNum']): ?&gt;<br />      Results page '&lt;?php echo $ridersblogMetaData['page']?&gt;' not found, &lt;a href=&quot;&lt;?php echo $ridersblogMetaData['firstPageLink'] ?&gt;&quot;&gt;start over &amp;gt;&amp;gt;&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php elseif (!$ridersblogRecords): ?&gt;<br />      No records were found!&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;<br />  &lt;!-- /STEP2: Display Records --&gt;<br /><br /><br />  &lt;!-- STEP3: Display Page Links (Paste anywhere below &quot;Load Record List&quot;) --&gt;<br />    &lt;?php if ($ridersblogMetaData['prevPage']): ?&gt;<br />      &lt;a href=&quot;&lt;?php echo $ridersblogMetaData['prevPageLink'] ?&gt;&quot;&gt;&amp;lt;&amp;lt; prev&lt;/a&gt;<br />    &lt;?php else: ?&gt;<br />      &amp;lt;&amp;lt; prev<br />    &lt;?php endif ?&gt;<br /><br />    - page &lt;?php echo $ridersblogMetaData['page'] ?&gt; of &lt;?php echo $ridersblogMetaData['totalPages'] ?&gt; -<br /><br />    &lt;?php if ($ridersblogMetaData['nextPage']): ?&gt;<br />      &lt;a href=&quot;&lt;?php echo $ridersblogMetaData['nextPageLink'] ?&gt;&quot;&gt;next &amp;gt;&amp;gt;&lt;/a&gt;<br />    &lt;?php else: ?&gt;<br />      next &amp;gt;&amp;gt;<br />    &lt;?php endif ?&gt;<br />  &lt;!-- /STEP3: Display Page Links --&gt;<br />&lt;/div&gt;<br />&lt;!-- end blog left column --&gt;<br /><br />&lt;!-- blog right column --&gt;<br />&lt;div id=&quot;RC_blog&quot;&gt;<br />&lt;p span class=&quot;rightcol_title&quot;&gt;AUTHORS&lt;/span&gt;<br />&lt;p&gt;View blogs by Author<br />  &lt;a href=&quot;#&quot;&gt;Author 1&lt;/a&gt;&lt;br /&gt;<br />  &lt;a href=&quot;#&quot;&gt;Author 2&lt;/a&gt;&lt;br /&gt;<br />  &lt;a href=&quot;#&quot;&gt;Author 3&lt;/a&gt;&lt;br /&gt;<br />  &lt;a href=&quot;#&quot;&gt;Author 4&lt;/a&gt;&lt;br /&gt;<br />  &lt;/p&gt;<br /><br />&lt;/div&gt;<br />&lt;!-- end blog right column --&gt;<br />]]></description>
          <pubDate>Wed, 24 Feb 2010 21:57:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202039#post2202039</guid>
        </item>
                <item>
          <title>Linking to specific blog posts</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202006#post2202006</link>
          <description><![CDATA[Hi,<br /><br />Not too sure if this has been mentioned yet but if someone could point me to a similar post or help would be good.<br /><br />I am designing a blog with CMSB, I have the list page/detail page down the left column and I want to have a right hand column which shows up on each page with the Authors listed and a link from each authors name to a page which lists just their posts . . . .<br /><br />AUTHORS<br />Author 1 [link to Author 1 blogs listings]<br />Author 2 [link to Auther 2 blogs listings]<br />Author 3 [link to Author 3 blogs listings]<br />etc<br /><br />Sorry I am still relatively new with this so it may be something simple but can't seem to figure it out.<br /><br />Cheers]]></description>
          <pubDate>Wed, 24 Feb 2010 01:00:03 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202006#post2202006</guid>
        </item>
              </channel>
    </rss>
  