<?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%3AHansaardappel</link>
        <description></description>
        <pubDate>Wed, 22 Apr 2026 04:06:21 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3AHansaardappel&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Maurice] Disappointed</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213160#post2213160</link>
          <description><![CDATA[<blockquote><br />me 2 agree with benidict <br /><br />we are making the leap to WP 3.0 <br /><br />tip!! small fast sites use cmsb Reale the best. <br />making demo sites CMSB is also the best <br />mid range sites use WP 3.0 <br />Larger complex sites any of the big names in CMS world. <br /><br />this prevents many frustrations <br />use the right tool for the right project we learned. <br /><br />Greetz M </blockquote><br />I don't agree with this at all, CMSB is definitely usable for complex sites.<br />]]></description>
          <pubDate>Wed, 14 Sep 2011 17:54:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213160#post2213160</guid>
        </item>
                <item>
          <title>Re: [Jason] Display one&apos;s search query</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212822#post2212822</link>
          <description><![CDATA[Worked perfect, thanks!<br />]]></description>
          <pubDate>Thu, 18 Aug 2011 20:29:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212822#post2212822</guid>
        </item>
                <item>
          <title>Re: [Hansaardappel] Display one&apos;s search query</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212798#post2212798</link>
          <description><![CDATA[Ran into a new problem and I found out it has to do with my solution to the previous problem I had. To display the search query I did the following: <br /><br />form code: <br /> <code> &lt;form method=&quot;post&quot; action=&quot;search.php&quot;&gt;  <br />  &lt;input type=&quot;text&quot; name=&quot;tags,content,title_keyword&quot; id=&quot;textfield&quot; value=&quot;Search...&quot; /&gt; <br />  &lt;button class=&quot;btn&quot; title=&quot;Submit Search&quot; name=&quot;submit&quot;&gt;&lt;/button&gt; </code><br /><br />And in my search.php page I added the following line: <br /> <code> $searchquery = $_POST[&quot;tags,content,title_keyword&quot;]; </code><br /><br /><br />To display the results on search.php I use this code: <br /> <code> &lt;h3&gt;Search Results for &quot;&lt;?php echo $searchquery ?&gt;&quot;&lt;/h3&gt;&lt;p&gt;&lt;/p&gt; <br />    &lt;?php foreach ($articlesRecords as $record): ?&gt; <br />      Title: &lt;?php echo $record['title'] ?&gt;&lt;br/&gt; <br />      Category: &lt;?php echo $numToName[$record['category']] ?&gt;&lt;br/&gt; <br />      Tags: &lt;?php echo $record['tags'] ?&gt;&lt;br/&gt; <br />      _link : &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['_link'] ?&gt;&lt;/a&gt;&lt;br/&gt; <br />      &lt;hr/&gt; <br />    &lt;?php endforeach; ?&gt;  <br /> <br />    &lt;?php if (!$articlesRecords): ?&gt; <br />      No records were found!&lt;br/&gt;&lt;br/&gt; <br />    &lt;?php endif ?&gt; </code><br /> <br /><br /><br />The result is good, except for the category. The notice I get: <br /><br />Notice: Undefined index: 2 in C:\xampp\htdocs\xampp\cmsbuilder\search.php on line 173 <br /><br />I found out that this has to do with the fact that I use $numToName, because I do get the result 2 (category 2) when I remove the $numToName part. Normally the $numToName function works fine though and it ALSO does in search.php if I delete $searchquery = $_POST[&quot;tags,content,title_keyword&quot;]; <br /><br />Could anyone explain to me why the $numToName function doesn't work when I add the $searchquery = $_POST[&quot;tags,content,title_keyword&quot;]; <br />part? And even more important, does anyone have any suggestions on how to fix it? <br /><br />Thanks again for your help :)  <br /><br />EDIT:<br />This is the code I use for $numToName at the top of my page:<br /><br /><code>  $numToName=array(); <br /> <br />  foreach($categoryRecords as $record){ <br />     $numToName[$record['num']]=$record['name']; <br />  }</code><br />]]></description>
          <pubDate>Wed, 17 Aug 2011 20:39:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212798#post2212798</guid>
        </item>
                <item>
          <title>Re: [Hansaardappel] Display one&apos;s search query</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212796#post2212796</link>
          <description><![CDATA[Figured it out already :)<br />]]></description>
          <pubDate>Wed, 17 Aug 2011 19:34:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212796#post2212796</guid>
        </item>
                <item>
          <title>Re: [Jason] Two problems when setting up a photo gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212784#post2212784</link>
          <description><![CDATA[That does get rid of the notice, now I get this notice though (and no images showing at all): <br /><br />Notice: Undefined index: images in C:\xampp\htdocs\xampp\cmsbuilder\articles4.php on line 150<br />]]></description>
          <pubDate>Wed, 17 Aug 2011 12:52:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212784#post2212784</guid>
        </item>
                <item>
          <title>Re: [Jason] Display one&apos;s search query</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212783#post2212783</link>
          <description><![CDATA[They can enter whatever they want :) Here's the code I use: <br /><br /><code>  &lt;form method=&quot;post&quot; action=&quot;search.php&quot;&gt; <br />  &lt;input type=&quot;text&quot; name=&quot;content,title_keyword&quot; id=&quot;textfield&quot; value=&quot;Search...&quot; /&gt;<br />  &lt;button class=&quot;btn&quot; title=&quot;Submit Search&quot;&gt;&lt;/button&gt;<br />  &lt;/form&gt;</code><br />]]></description>
          <pubDate>Wed, 17 Aug 2011 12:42:37 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212783#post2212783</guid>
        </item>
                <item>
          <title>Display one&apos;s search query</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212775#post2212775</link>
          <description><![CDATA[This may be very easy, but I have no idea how to accomplish it. <br /><br />I want my search page to look like this:<br /><br />Search Results for &quot;The search query they entered&quot;: <br /><br />result1<br />result2 etc... <br /><br />I got it working as I want, but how do I display the search query? <br /><br />Thanks!<br />]]></description>
          <pubDate>Wed, 17 Aug 2011 11:27:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212775#post2212775</guid>
        </item>
                <item>
          <title>Re: [Jason] Two problems when setting up a photo gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212744#post2212744</link>
          <description><![CDATA[Hi Jason, <br /><br />I just tried your suggestion, but unfortunately without succes. I get exactly the same notice and not the desired effect. Here's my current &quot;body code&quot;... is anything wrong with it? <br /><br /><code>      &lt;?php foreach ($imageRecords as $image): ?&gt;<br />&lt;?php if ($image['images']): ?&gt;<br />&lt;div id=&quot;content_menu_content&quot;&gt;<br />&lt;div id=&quot;content_menu_navbar&quot;&gt;<br />&lt;img src=&quot;picture-gallery.png&quot; /&gt;<br />Photo Gallery&lt;/div&gt;<br />&lt;div id=&quot;gallery&quot;&gt;<br />&lt;table&gt;<br />&lt;tr&gt;<br />&lt;?php foreach ($image['images'] as $upload): ?&gt;<br />&lt;td&gt;<br />&lt;div id=&quot;crop&quot;&gt;<br />&lt;a href=&quot;&lt;?PHP echo $upload['urlPath'] ?&gt;&quot;&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath'] ?&gt;&quot; /&gt;<br />&lt;/a&gt;<br />&lt;/div&gt;<br />&lt;/td&gt;<br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt;&lt;/tr&gt;<br />&lt;tr&gt;&lt;?php endif; ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/tr&gt;<br />&lt;/table&gt;<br />&lt;/div&gt;<br />&lt;/div&gt;<br />&lt;p&gt;&lt;/p&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;</code> <br /><br />Any other suggestions? I've searched around the forums quite a bit, but that didn't help me any further either.<br /><br />Thanks again :)<br />]]></description>
          <pubDate>Tue, 16 Aug 2011 15:37:11 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212744#post2212744</guid>
        </item>
                <item>
          <title>Re: [Jason] Two problems when setting up a photo gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212728#post2212728</link>
          <description><![CDATA[Hi Jason, <br /><br />Thanks for your reply. Unfortunately it gives me the following notice (and it messes up my design): <br /><br />Notice: Undefined index: listPageOrder in C:\xampp\htdocs\xampp\cmsAdmin\lib\viewer_functions.php on line 54 <br /><br />Any suggestions? <br /><br />Thanks!<br />]]></description>
          <pubDate>Mon, 15 Aug 2011 18:49:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212728#post2212728</guid>
        </item>
                <item>
          <title>Two problems when setting up a photo gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212696#post2212696</link>
          <description><![CDATA[Hi, <br /><br />It often happens that when I write an article, I end up uploading 10+ pictures. One of those pictures ends up in the body of my article and the rest as thumbnails in a menu on the side. The problems I have are with the thumbnail images. The first thing is that the picture I use in the article body also ends up in the gallery, although I don't want it to. The second is that when I upload 6+ images, the menu becomes too crowded. I'd rather show 6 and add a &quot;next page link&quot; to show the rest. <br /><br />To start off, here's my code at the top: <br /><br /><code>list($articlesRecords, $articlesMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'articles',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $articlesRecord = @$articlesRecords[0]; // get first record <br /><br />list($categoryRecords,$categoryMetaData) = getRecords(array( <br />       'tableName' =&gt; 'categories', <br />       )); <br /> <br />  $numToName=array(); <br /> <br />  foreach($categoryRecords as $record){ <br />     $numToName[$record['num']]=$record['name']; <br />  }  <br /><br />  foreach($articlesRecords as $thumbnails){<br />  };<br />  <br />    list($thumbnailsRecords,$thumbnailsMetaData) = getRecords(array( <br />       'tableName' =&gt; 'articles',<br />     'offset' =&gt; 1<br />       ));</code> <br /><br />The gallery code: <br /><br /><code>&lt;div id=&quot;gallery&quot;&gt;<br />&lt;table&gt;<br />&lt;tr&gt;<br />&lt;?php foreach ($thumbnails['images'] as $upload): ?&gt;<br />&lt;td&gt;<br />&lt;div id=&quot;crop&quot;&gt;<br />&lt;a href=&quot;&lt;?PHP echo $upload['urlPath'] ?&gt;&quot;&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath'] ?&gt;&quot; /&gt;<br />&lt;/a&gt;<br />&lt;/div&gt;<br />&lt;/td&gt;<br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt;&lt;/tr&gt;<br />&lt;tr&gt;&lt;?php endif; ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/tr&gt;<br />&lt;/table&gt;<br />&lt;/div&gt;</code> <br /><br />Thanks in advance for any help offered!<br />]]></description>
          <pubDate>Fri, 12 Aug 2011 14:35:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212696#post2212696</guid>
        </item>
                <item>
          <title>Re: [Hansaardappel] Hide last record in the &quot;Other News&quot; section</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212679#post2212679</link>
          <description><![CDATA[Nevermind, just did a search and found an old thread that showed me that something as simple as offset would do the trick :)<br />]]></description>
          <pubDate>Thu, 11 Aug 2011 21:23:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212679#post2212679</guid>
        </item>
                <item>
          <title>Hide last record in the &quot;Other News&quot; section</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212678#post2212678</link>
          <description><![CDATA[Hi Guys,<br /><br />I have a small problem with my index page. Today I changed the setup of my index page, making a small preview + image (kinda like a headline) for my last record and then showing the list of other news. Despite my lack of PHP knowledge, I managed to create a summary, but the one problem I have now is the fact that the last record also appears in the other news section.<br /><br />So let's say my last 3 articles are called<br />1. Netherlands (last article and therefore the headline)<br />2. Belgium<br />3. Australia<br /><br />My question now is, how do I remove Netherlands from the other news section?<br /><br />Here's my code at the top of the page:<br /><br /><code>list($categoriesRecords, $selectedCategory) = getCategories(array( <br />    'tableName'   =&gt; 'categories', <br />  ));<br /><br />  list($articlesRecords, $articlesMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'articles',<br />	$exclude= 2,<br />  ));<br />  <br />  list($categoryRecords,$categoryMetaData) = getRecords(array( <br />       'tableName' =&gt; 'categories', <br />       )); <br /> <br />  $numToName=array(); <br /> <br />  foreach($categoryRecords as $record){ <br />     $numToName[$record['num']]=$record['name']; <br />  } <br />  <br />  foreach($articlesRecords as $headlines){<br />  };<br />  <br />    list($headlinesRecords,$headlinesMetaData) = getRecords(array( <br />       'tableName' =&gt; 'articles', <br />	   	'limit'       =&gt; '1',<br />       ));</code><br /><br />My code in the body of my page:<br /><br /><code>&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 />    &lt;?php foreach ($categoriesRecords as $categoryRecord): ?&gt; <br />    &lt;?php endforeach ?&gt; <br /><br />  &lt;!-- STEP2: Display Records (Paste this where you want your records to be listed) --&gt;<br />      &lt;?php foreach ($headlinesRecords as $record): ?&gt;<br />&lt;?php echo $numToName[$record['category']] ?&gt;: <br />      &lt;?php echo $record['title'] ?&gt;&lt;p&gt;&lt;/p&gt;<br />      &lt;?php foreach ($record['images'] as $upload): ?&gt;<br />      &lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; /&gt;<br /><br />      &lt;/h2&gt;<br />      &lt;?PHP  echo maxWords($record['content'], 100);  <br />?&gt;<br />    &lt;?php endforeach; ?&gt;<br /><br />    &lt;?php if (!$articlesRecords): ?&gt;<br />      No records were found!&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;<br />  &lt;!-- /STEP2: Display Records --&gt;<br />  ...&lt;p&gt;&lt;/p&gt;<br />  &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;Read More &amp;raquo;&lt;/a&gt;&lt;p&gt;&lt;/p&gt;<br />        &lt;?php endforeach ?&gt;<br />&lt;h2&gt;Other News&lt;/h2&gt;&lt;p&gt;&lt;/p&gt;<br />      &lt;?php foreach ($articlesRecords as $record): ?&gt;<br />  &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;<br />	  &lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;p&gt;&lt;/p&gt;<br />      &lt;?php endforeach ?&gt;</code><br /><br />Thanks!<br />]]></description>
          <pubDate>Thu, 11 Aug 2011 21:01:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212678#post2212678</guid>
        </item>
                <item>
          <title>Re: [Jason] Excluding specific record</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203408#post2203408</link>
          <description><![CDATA[Thanks Jason, once more exactly what I had in mind. Thanks so much!<br />]]></description>
          <pubDate>Mon, 19 Apr 2010 13:37:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203408#post2203408</guid>
        </item>
                <item>
          <title>Re: [Jason] Small where clause issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203404#post2203404</link>
          <description><![CDATA[This works perfect, thanks so much Jason. There's one last issue I'm dealing with and after that, I promise not to bug you again for at least a month [sly] I posted that problem here: <a target="_blank" href="http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Excluding_specific_record_P79496/">http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Excluding_specific_record_P79496/</a> <br /><br />Thanks! <br /><br />Kind Regards,<br />Hans<br />]]></description>
          <pubDate>Mon, 19 Apr 2010 12:58:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203404#post2203404</guid>
        </item>
                <item>
          <title>Re: [Jason] Small where clause issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203390#post2203390</link>
          <description><![CDATA[Thanks for replying Jason. I changed the code to what you said, but still no results...<br />]]></description>
          <pubDate>Mon, 19 Apr 2010 11:36:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203390#post2203390</guid>
        </item>
                <item>
          <title>Re: [sagentic] Excluding specific record</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203373#post2203373</link>
          <description><![CDATA[Thanks for the reaction, but that's not really want I meant. My idea is to exclude &quot;item 2&quot; on a certain page, and show it on another page, where I exclude another record.<br />]]></description>
          <pubDate>Sun, 18 Apr 2010 20:40:15 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203373#post2203373</guid>
        </item>
                <item>
          <title>Re: [Hansaardappel] Small where clause issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203361#post2203361</link>
          <description><![CDATA[*Sigh* ran into another problem... <br /><br />I wanted to display the records that belonged to BOTH &quot;ATP&quot; and &quot;Australian Open&quot; category. The code I used:<br /><br />&lt;?php list($catsRecords,$catsMetaData)=getRecords(array(     <br />'tableName'=&gt;'categories',<br />'where'=&gt;&quot;name='ATP' AND name='Australian Open'&quot;,<br />)); <br />$catlist=&quot;'&quot;; <br />foreach($catsRecords as $cats){     <br />$catlist.=&quot;%\t&quot;.$cats['num'].&quot;\t%&quot;; <br />} <br />$catlist.=&quot;'&quot;; <br />?&gt; <br /><br />&lt;?php list($catRecords,$catMetaData)=getRecords(array(     <br />'tableName'=&gt;'fpvideo',    <br />'where'=&gt;&quot;category LIKE $catlist&quot;,<br />'orderBy'=&gt;'createdDate ASC',<br />)); <br />?&gt; <br /><br />This doesn't show any results though. What am I missing here?<br />]]></description>
          <pubDate>Sat, 17 Apr 2010 11:10:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203361#post2203361</guid>
        </item>
                <item>
          <title>Excluding specific record</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203353#post2203353</link>
          <description><![CDATA[Is it possible to exclude a specific record? Say I've got a category that contains item 1 till item 10 and I want to display every item, except for number two. What code should I use to achieve this?<br /><br />Thanks!<br />]]></description>
          <pubDate>Fri, 16 Apr 2010 17:39:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203353#post2203353</guid>
        </item>
                <item>
          <title>Re: [Jason] Small where clause issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203352#post2203352</link>
          <description><![CDATA[Just what I wanted. Thanks for all the help today Jason it's really appreciated!<br /><br />Greets,<br />Hansaardappel<br />]]></description>
          <pubDate>Fri, 16 Apr 2010 16:25:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203352#post2203352</guid>
        </item>
                <item>
          <title>Re: [Jason] Small where clause issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203349#post2203349</link>
          <description><![CDATA[Hi Jason, <br /><br />It works once again, there's just one little problem. When an entry is assigned to multiple categories, I'm having a bit of trouble to get the content displayed. There's this entry that's assigned to two categories, namely &quot;ATP&quot; and &quot;Australian Open&quot;. I use this code:<br /><br />$query =&quot;Select num from cms_categories where name='Australian Open'&quot;; <br /><br />It doesn't show me the content and I think it's because of the fact that the entry is also assigned to ATP, because when I add the entry only to the category Australian Open, it does work.<br /><br />Suggestions?<br />]]></description>
          <pubDate>Fri, 16 Apr 2010 14:43:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203349#post2203349</guid>
        </item>
                <item>
          <title>Re: [Jason] 3rd party comment script interferes with CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203341#post2203341</link>
          <description><![CDATA[Works like a charm, thanks you SO much. Lol I've been working on this for over 8 hours and a couple of minutes is enough for you... I feel like an idiot [;)]<br /><br />Thanks again!<br />]]></description>
          <pubDate>Fri, 16 Apr 2010 13:43:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203341#post2203341</guid>
        </item>
                <item>
          <title>Re: [Jason] 3rd party comment script interferes with CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203335#post2203335</link>
          <description><![CDATA[Thanks... attached!<br />]]></description>
          <pubDate>Fri, 16 Apr 2010 13:09:37 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203335#post2203335</guid>
        </item>
                <item>
          <title>Re: [Jason] 3rd party comment script interferes with CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203325#post2203325</link>
          <description><![CDATA[Sorry, should have posted that in this thread :)<br /><br />The CMS Builder content that doesn't show is the &quot;In the spotlight&quot; content in the upper right corner and the &quot;related videos&quot; on the right side of the comments. It shows at first, but as soon as a comment is posted, the content &quot;disappears&quot;.<br />]]></description>
          <pubDate>Fri, 16 Apr 2010 11:47:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203325#post2203325</guid>
        </item>
                <item>
          <title>Re: [Jason] Small where clause issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203322#post2203322</link>
          <description><![CDATA[Hey Jason, thanks for replying. <br /><br />I think you misunderstood my post, the function already works when I use the code<br /><font size="3">'where' =&gt; &quot;category LIKE '%\t5\t%' AND MONTH(createdDate) = 3 AND YEAR(createdDate) = 2010&quot;,<br /><br />Instead of using using tab 5 (t5 in code) I want to use the name of tab 5 (which is ATP). Is that possible and if so, how?<br /><br />Thanks!</font><br />]]></description>
          <pubDate>Fri, 16 Apr 2010 11:18:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203322#post2203322</guid>
        </item>
                <item>
          <title>Re: [jonoc73] lookupReferringRecords Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203316#post2203316</link>
          <description><![CDATA[<blockquote><br />If I run this on a page without the plugin Chris made, it loads the page fine but WITHOUT any cms content. Does the viewer_functions.php file not run when programmes on the server are returning to a page? or is it something else? How would i force it to run in php? <br /><br />thanks Jono </blockquote><br />This is EXACTLY the problem I'm currently facing. Did anyone come up with a suitable answer?<br />]]></description>
          <pubDate>Fri, 16 Apr 2010 07:54:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203316#post2203316</guid>
        </item>
              </channel>
    </rss>
  