<?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%3AChris_t</link>
        <description></description>
        <pubDate>Tue, 19 May 2026 18:34:27 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3AChris_t&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [chris] news content or pdf</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199727#post2199727</link>
          <description><![CDATA[Bingo that works thanks for the help<br />]]></description>
          <pubDate>Mon, 12 Oct 2009 09:10:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199727#post2199727</guid>
        </item>
                <item>
          <title>Re: [chris] news content or pdf</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199677#post2199677</link>
          <description><![CDATA[Ok that did not work but I think we are close.<br /><br />This is in the heading to display the new articles on the right hand side<br /><br /><code>&lt;?php<br />  <br />  require_once &quot;/home/chsm00/public_html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($in_the_newsRecords, $in_the_newsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'in_the_news',<br />  ));<br /><br />?&gt;</code><br /><br />Here is the header code for displaying the details of the article <br /><code>&lt;?php<br />  <br />  require_once &quot;/home/chsm00/public_html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($in_the_newsSelectedRecord, $in_the_newsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'in_the_news',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $in_the_newsRecord = @$in_the_newsSelectedRecord[0]; // get first record<br /><br />  // show error message if no matching record is found<br />  if (!$in_the_newsRecord) {<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br /><br />?&gt;</code><br /><br />For the list of articles I have the code you provided before works great by the way.<br /> <code>&lt;?php foreach ($in_the_newsRecords as $record): ?&gt; <br /> <br />      &lt;?php if (!$record['content'] &amp;&amp; !empty($record['pdf'])): ?&gt; <br />        &lt;a href=&quot;&lt;?php echo $record['pdf'][0]['urlPath'] ?&gt;&quot;&gt;<br />      &lt;?php else: ?&gt; <br />        &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;<br />      &lt;?php endif ?&gt; <br /> <br />        &lt;br /&gt;&lt;?php echo $record['title'] ?&gt; <br />      &lt;/a&gt; <br />      &lt;br /&gt; <br /> <br />    &lt;?php endforeach; ?&gt;<br />&lt;?php if (!$in_the_newsRecords): ?&gt;<br />      No records were found!&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;</code><br /><br />Then to display the details of the most current content written article on the right I have   <code> &lt;?php foreach ($in_the_newsRecords as $record): ?&gt; <br />  &lt;?php if (!$record['content']) { continue; } ?&gt; <br /> <br /> <br />  &lt;?php break; ?&gt; <br />&lt;?php endforeach ?&gt;&gt;</code><br /><br /><a target="_blank" href="http://www.chs-mo.org/proof/news.php">http://www.chs-mo.org/proof/news.php</a><br /><br />Thank you for your time<br />]]></description>
          <pubDate>Fri, 09 Oct 2009 11:29:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199677#post2199677</guid>
        </item>
                <item>
          <title>Re: [Chris_t] news content or pdf</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199652#post2199652</link>
          <description><![CDATA[Alright I have a follow up to that questions. The client wants it so when you go to the news page the current article is open to the left of the list. How do I script that so it skips the ones that are only pdfs and show the most recent one they wrote using the content box.<br /><br /><a target="_blank" href="http://www.chs-mo.org/proof/news.php">http://www.chs-mo.org/proof/news.php</a><br /><br />Thank you again for all your help<br />]]></description>
          <pubDate>Wed, 07 Oct 2009 15:49:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199652#post2199652</guid>
        </item>
                <item>
          <title>Re: [chris] news content or pdf</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199646#post2199646</link>
          <description><![CDATA[Thank you very much that worked<br />]]></description>
          <pubDate>Tue, 06 Oct 2009 15:21:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199646#post2199646</guid>
        </item>
                <item>
          <title>Re: [chris] news content or pdf</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199643#post2199643</link>
          <description><![CDATA[For the news page I have up in the header <br /><br /><code>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  <br />  require_once &quot;/home/chsm00/public_html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($in_the_newsRecords, $in_the_newsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'in_the_news',<br />  ));<br /><br />?&gt;</code> For the links to the news in the body of the page<br /><br /><code>&lt;?php foreach ($in_the_newsRecords as $record): ?&gt; <br /> <br />      &lt;?php if (!$record['content'] &amp;&amp; !empty($record['pdf'])): ?&gt; <br />        &lt;a href=&quot;&lt;?php echo $record['pdf'][0]['urlPath'] ?&gt;&quot;&gt;<br />      &lt;?php else: ?&gt; <br />        &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;<br />      &lt;?php endif ?&gt; <br /> <br />        &lt;br /&gt;&lt;?php echo $record['title'] ?&gt; <br />      &lt;/a&gt; <br />      &lt;br /&gt; <br /> <br />    &lt;?php endforeach; ?&gt;<br />&lt;?php if (!$in_the_newsRecords): ?&gt;<br />      No records were found!&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;</code> Is in the header for the news detail page<br /><br /><br /><code>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  <br />  require_once &quot;/home/chsm00/public_html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($in_the_newsRecords, $in_the_newsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'in_the_news',<br />  ));<br /><br />?&gt;<br />&lt;?php<br />  <br />  require_once &quot;/home/chsm00/public_html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($in_the_newsRecords, $in_the_newsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'in_the_news',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $in_the_newsRecord = @$in_the_newsRecords[0]; // get first record<br /><br />  // show error message if no matching record is found<br />  if (!$in_the_newsRecord) {<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br /><br />?&gt;</code> displays the content field for the news<br /><br /> <code> &lt;h1&gt;&lt;?php echo $in_the_newsRecord['title'] ?&gt;&lt;/h1&gt;&lt;br/&gt;<br />     &lt;?php echo $in_the_newsRecord['content'] ?&gt;&lt;br/&gt;<br />    &lt;?php if (!$in_the_newsRecord): ?&gt;<br />      No record found!&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;</code>  Is the list<br /><code>&lt;?php foreach ($in_the_newsRecords as $record): ?&gt; <br /> <br />      &lt;?php if (!$record['content'] &amp;&amp; !empty($record['pdf'])): ?&gt; <br />        &lt;a href=&quot;&lt;?php echo $record['pdf'][0]['urlPath'] ?&gt;&quot;&gt;<br />      &lt;?php else: ?&gt; <br />        &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;<br />      &lt;?php endif ?&gt; <br /> <br />        &lt;br /&gt;&lt;?php echo $record['title'] ?&gt; <br />      &lt;/a&gt; <br />      &lt;br /&gt; <br /> <br />    &lt;?php endforeach; ?&gt;<br />&lt;?php if (!$in_the_newsRecords): ?&gt;<br />      No records were found!&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;</code> <br /><br />Hope that helps<br />]]></description>
          <pubDate>Tue, 06 Oct 2009 15:08:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199643#post2199643</guid>
        </item>
                <item>
          <title>Re: [chris] news content or pdf</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199639#post2199639</link>
          <description><![CDATA[Thank you that did the trick. One issue that I found was when you clicked on the article to the details page the listing of all the news items went away and all that was left was the one related to the details page. Is there a way I can have both a list view and details view showing at the same time?<br /><a target="_blank" href="http://www.chs-mo.org/news.php">http://www.chs-mo.org/news.php</a><br /><br />Thank you<br />Chris<br />]]></description>
          <pubDate>Tue, 06 Oct 2009 14:36:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199639#post2199639</guid>
        </item>
                <item>
          <title>news content or pdf</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199631#post2199631</link>
          <description><![CDATA[Hello all I hope you can help with my problem.<br /><br />A client wants there news page to have a list of all the stories on the side linking to the details of the story. That is easy the problem comes when all they do is link to a pdf in the uploads area. Is there an if else command that would have it link to the details page if they write in the content WYSIWYG area if not then link to the PDF?<br /><br />Thank you for your time.<br /><br />Chris<br />]]></description>
          <pubDate>Tue, 06 Oct 2009 11:25:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199631#post2199631</guid>
        </item>
                <item>
          <title>Re: [Dave] CMS Builder - Roadmap &amp; Feature Requests (post feature requests here)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191143#post2191143</link>
          <description><![CDATA[For example we work with many charities They use forms like, sign up to RSVP for our golf tournament. Then the next month it will be for a silent auction, ect... The form just sends what they fill out to an email address. I guess that it could send to a new database field called RSVP and they could look in the CMS to see the list.<br /><br />Thanks for asking Dave<br />]]></description>
          <pubDate>Wed, 09 Apr 2008 12:11:55 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191143#post2191143</guid>
        </item>
                <item>
          <title>Re: [Dave] CMS Builder - Roadmap &amp; Feature Requests (post feature requests here)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191140#post2191140</link>
          <description><![CDATA[Hey Dave. from what you said is coming I like. I would add the ability to create a form would be on my list. Pretty much 100% of the sites I build have a form on them. Some are for just one event and when that is over it needs to be changed for the next one coming up, so it would really help if they could do all that.<br />]]></description>
          <pubDate>Wed, 09 Apr 2008 11:14:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191140#post2191140</guid>
        </item>
                <item>
          <title>Re: [Dave] CMS Builder Menu &amp; Screen Resolution (post your feedback)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191139#post2191139</link>
          <description><![CDATA[I would say the left side menu makes sense. I have had clients not like how this drop down menu works as it stands.<br /><br />have a great day <br /><br />Chris<br />]]></description>
          <pubDate>Wed, 09 Apr 2008 11:06:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191139#post2191139</guid>
        </item>
                <item>
          <title>Re: [Dave] grouping list results</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191052#post2191052</link>
          <description><![CDATA[Hey Dave I knew there was some way to do that. To bad I did it the hard way [mad] I used a page view and called each one of them up by record num. Works, and looks the way I need it to so everything is fine.<br /><br />Thanks again <br /><br />Chris<br />]]></description>
          <pubDate>Wed, 02 Apr 2008 11:54:03 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191052#post2191052</guid>
        </item>
                <item>
          <title>grouping list results</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191045#post2191045</link>
          <description><![CDATA[First I need to give a huge thanks to Dave and all the staff here for the wonderful support. <br /><br />Now on to my question, I need to list out the standings of the football league. Pretty easy there are only 8 teams 4 in the east 4 in the west. My problem comes when I need them listed out I need the 4 teams ranked then a break the word East then the other 4 teams ranked. <br /><br />I am wondering if the way we were displaying the players with that <code> &lt;?php $maxCols=3; if (@++$count % $maxCols == 0): ?&gt;</code> could be changed for this reason. My big hang up is how to have it pause, then have it put or I hard code it in, the word East or West then continue listing. I though about adding east and west to the cms list but I need that to be in a different font size and color then the rest of the listing.<br />]]></description>
          <pubDate>Tue, 01 Apr 2008 14:54:43 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191045#post2191045</guid>
        </item>
                <item>
          <title>Re: [Dave] custom page view</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190859#post2190859</link>
          <description><![CDATA[Trust me Tom I am the more confused one. You are talking to a guy that has a portfolio full of Illustrator work so yeah my job description has changed a lot. I got your message at the same time as I posted my update. If you go to <br /><a target="_blank" href="http://www.ragefootball.com/dancerPage.php?96/">http://www.ragefootball.com/dancerPage.php?96/</a><br />you will see the slide show in action. <br />On dancerPage.php I have this code </code><br />&lt;script type=&quot;text/javascript&quot;&gt;<br />var so = new SWFObject('http://www.ragefootball.com/test/imagerotator.swf','mpl','275','418','8');<br />so.addParam('allowscriptaccess','always');<br />so.addParam('allowfullscreen','true');<br />so.addVariable('height','418');<br />so.addVariable('width','275');<br />so.addVariable('file','http://www.ragefootball.com/test/imagelist.php.xml');<br />so.addVariable('transition','fade');<br />so.addVariable('enablejs','true');<br />so.addVariable('linkfromdisplay','true');<br />so.write('player');<br />&lt;/script&gt;</code><br />I could write it like this if you think it would help<br /><code>&lt;embed<br />src=&quot;http://www.ragefootball.com/test/imagerotator.swf&quot;<br />width=&quot;275&quot;<br />height=&quot;418&quot;<br />allowscriptaccess=&quot;always&quot;<br />allowfullscreen=&quot;true&quot;<br />flashvars=&quot;height=418&amp;width=275&amp;file=http://www.ragefootball.com/test/imagelist.php.xml&amp;transition=fade&quot;<br />/&gt;</code><br />With the imagelist.php.xml looking like this <br /><code> &lt;?php<br />      require_once &quot;/home/ragefoot/public_html/cmsAdmin/lib/viewer_functions.php&quot;;<br />      $options = array(); <br />      $options['tableName'] = 'player'; <br />      $options['recordNum'] = '90';  <br />      $options['where'] = '';  <br />      $record = getRecord($options);<br />    ?&gt;<br />&lt;playlist xmlns=&quot;http://xspf.org/ns/0/&quot; version=&quot;1&quot;&gt;<br />	&lt;trackList&gt;<br />	  &lt;?php foreach (getUploads($options['tableName'], 'dancer_slide_show', $record['num']) as $upload): ?&gt;<br />		&lt;track&gt;<br /><br />&lt;location&gt;http://www.ragefootball.com/cmsAdmin/uploads/Dancers/&lt;?php echo $upload['filename'] ?&gt;&lt;/location&gt;<br />	&lt;/track&gt;<br />&lt;?php endforeach ?&gt;<br />&lt;/trackList&gt;<br />&lt;/playlist&gt;</code><br />So that gets to the point I am at.<br />you can view the xml file output by going here<br /><a target="_blank" href="http://www.ragefootball.com/test/imagelist.php.xml">http://www.ragefootball.com/test/imagelist.php.xml</a><br />I tried to place <code>dancerPageXML.php?&lt;?php echo @$_SERVER['QUERY_STRING']; ?&gt;</code><br />in the xml file at the $options['where'] = '';  and got this error &quot;Parse error: syntax error, unexpected T_STRING in /home/ragefoot/public_html/test/imagelist.php.xml on line 6&quot;<br /><br />I know we are close Dave I can feel it or I would have told the client not that can't be done LOL.<br /><br />Thanks for your time <br />Chris<br />]]></description>
          <pubDate>Thu, 20 Mar 2008 16:23:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190859#post2190859</guid>
        </item>
                <item>
          <title>Re: [ChrisTitchenal] custom page view</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190853#post2190853</link>
          <description><![CDATA[Alright been messing with the code <br /><br /><code> &lt;?php<br />      require_once &quot;/home/ragefoot/public_html/cmsAdmin/lib/viewer_functions.php&quot;;<br />      $options = array(); <br />      $options['tableName'] = 'player'; <br />      $options['recordNum'] = '90';  <br />      $options['where'] = '';  <br />      $record = getRecord($options);<br />    ?&gt;<br />&lt;playlist xmlns=&quot;http://xspf.org/ns/0/&quot; version=&quot;1&quot;&gt;<br />	&lt;trackList&gt;<br />	  &lt;?php foreach (getUploads($options['tableName'], 'dancer_slide_show', $record['num']) as $upload): ?&gt;<br />		&lt;track&gt;<br /><br />&lt;location&gt;http://www.ragefootball.com/cmsAdmin/uploads/Dancers/&lt;?php echo $upload['filename'] ?&gt;&lt;/location&gt;<br />&lt;/track&gt;<br />&lt;?php endforeach ?&gt;<br />&lt;/trackList&gt;<br />&lt;/playlist&gt;</code><br /><br />Will get me the image to load.<br /><br />I had to tell it a recordNum to get it to do that. So now I need to figure out how to pass a number to it and have it display the matching ones.<br /><br />Thanks<br />]]></description>
          <pubDate>Thu, 20 Mar 2008 15:46:14 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190853#post2190853</guid>
        </item>
                <item>
          <title>Re: [Dave] custom page view</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190847#post2190847</link>
          <description><![CDATA[Hey Dave<br /><br />Let me try to explain the structure of the CMS better.<br />I made a Section called player ( now looking back I should have named it staff) That is where everyone is listed dancers,players,coaches, and office personal. It has there name hight weight ect.. all there bio information. Inside that Section is an upload box named dancer_slide_show. That is where I want them to upload only the pictures they want to show in the slide show. <br /><br />So when they click the read more on a dancer it pulls up the dancerPage.php That contains the flash file slide show on it and with any luck starts displaying the matching girls photos.<br /><br />So I need in the page view in the xml for it to match the dancers personal entry in the players section so it displays just the pictures uploaded to just her.<br /><br />If your still thinking English is my second or third language  [:P] I will try to rephrase my question again. if you could write the syntactic of how I would define <br /> $options['where']     = to check the field dancer_slide_show = the name field   That in my little knowledge of php should be how it can match up the pictures uploaded to the girl.<br /><br />Thanks<br />Chris<br />]]></description>
          <pubDate>Thu, 20 Mar 2008 13:09:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190847#post2190847</guid>
        </item>
                <item>
          <title>Re: [Dave] Website Launches - Announce your new CMS Builder websites here!</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190840#post2190840</link>
          <description><![CDATA[I have been working on two sites with CMSB <a target="_blank" href="http://www.clikquikcoupons.com">http://www.clikquikcoupons.com</a> is one of them. The menus on the left are all being pulled and created from the CMSB. The center, ( if anyone can give me a tip on if statement to hide the click here image when they don't have 4 stories that would be great) the banners at the top are a flash file feed by an xml file created by CMSB. Every page of the site is in CMSB. <br /><br />Thanks to Interactive tools <br /><br />When my client of the other site stops making changes I will list it here.<br />]]></description>
          <pubDate>Thu, 20 Mar 2008 09:37:43 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190840#post2190840</guid>
        </item>
                <item>
          <title>custom page view</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190839#post2190839</link>
          <description><![CDATA[Hello All,<br /><br />Alright I am close to having this worked out I am sure it is just a matter of formating it correctly. here is my code for the xml file<br /><br /><br /><code> &lt;?php<br />      require_once &quot;/home/ragefoot/public_html/cmsAdmin/lib/viewer_functions.php&quot;;<br />      $options = array();                // NOTE: see online documentation for more details on these options<br />      $options['tableName'] = 'player'; // (REQUIRED) MySQL tablename to list record from. Example: &quot;article&quot;;<br />      $options['recordNum'] = '';        // (optional) Record number to display.  Example: &quot;1&quot;; Defaults to number on end of url, then 1<br />      $options['where']     = &quot;dancer_slide_show = 'name'&quot;;        // (ADVANCED) MySQL WHERE conditions to use INSTEAD of recordNum to look up record. Example: &quot;fieldname = 'value'&quot;<br />      $record = getRecord($options);<br />    ?&gt;<br />&lt;playlist xmlns=&quot;http://xspf.org/ns/0/&quot; version=&quot;1&quot;&gt;<br />	&lt;trackList&gt;<br />	  &lt;?php foreach (getUploads($options['tableName'], 'dancer_slide_show', $record['num']) as $upload): ?&gt;<br />		&lt;track&gt;<br />			&lt;/location&gt;http://www.ragefootball.com/cmsAdmin/uploads/Dancers/&lt;?php echo $upload['filename'] ?&gt;&lt;location&gt;<br />		&lt;/track&gt;<br />	&lt;?php endforeach ?&gt;<br />	&lt;/trackList&gt;<br />&lt;/playlist&gt;</code><br /><br />I get &quot;Page Viewer (player): MySQL Error: Unknown column 'dancer_slide_show' in 'where clause'&quot; <br /><br />With that I am sure all I need to do is define the field dancer_slide_show with a value of just one dancer like her name so it shows just the pictures uploaded in her entry. because the xml file is a separate file I am not sure it can look up the url and get the number. Let me know if any of you smart people can shed some light on this.<br /><br />Thanks<br />Chris<br />]]></description>
          <pubDate>Thu, 20 Mar 2008 09:27:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190839#post2190839</guid>
        </item>
                <item>
          <title>Re: [Dave] showing if the article is hidden or not</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190808#post2190808</link>
          <description><![CDATA[Sorry to leave you hanging Dave,<br />I added that code to each page it's self at the top.<br />]]></description>
          <pubDate>Wed, 19 Mar 2008 10:56:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190808#post2190808</guid>
        </item>
                <item>
          <title>Re: [Dave] showing if the article is hidden or not</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190794#post2190794</link>
          <description><![CDATA[I changed it and nothing bad happened but it did not fix the problem. I went and changed the php header from<br /> <code>&lt;?php echo &quot;&lt;?xml version='1.0'?&gt;\n&quot;; ?&gt;</code><br /><br />to this <br /><code>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;</code><br />and that fixed the problem, now did I mess anything in CMS by doing that? <br /><br />Chris<br />]]></description>
          <pubDate>Tue, 18 Mar 2008 13:16:02 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190794#post2190794</guid>
        </item>
                <item>
          <title>Re: [Dave] showing if the article is hidden or not</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190791#post2190791</link>
          <description><![CDATA[Thanks Dave, I am running ver 1.09  <br /><br />  <br /><br />I opened the init.php file and boy does this look confusing. where in this file do I add <br /><br /> <code> ini_set('default_charset', 'utf-8');</code><br /> <br /><br />Thanks for all your kind help  <br /><br />Chris<br />]]></description>
          <pubDate>Tue, 18 Mar 2008 12:56:26 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190791#post2190791</guid>
        </item>
                <item>
          <title>showing if the article is hidden or not</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190786#post2190786</link>
          <description><![CDATA[Hello All, I have a what I hope is a simple question.<br />The client is wanting to know if when they are looking at the CMS and see a list of news article. If along with the title they can see if the article is hidden or not instead of going into the modify and looking there. <br /><br />Also before I forget has anyone else seen Â showing up when they use the wysiwyg editor. I think, I just need to change the  character set. Would that be a per page thing or something in the cms system files.<br /><br />Thanks<br />Chris<br />]]></description>
          <pubDate>Tue, 18 Mar 2008 11:14:33 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190786#post2190786</guid>
        </item>
                <item>
          <title>Re: [Dave] list view more than one at a time</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190740#post2190740</link>
          <description><![CDATA[Thanks Dave, <br /><br />here is what they sent me and said make it look like that [url &quot;http://www.vikings.com/Team.aspx&quot;]<u>[font &quot;Arial&quot;]<span style="color: #0000ff">http://www.vikings.com/Team.aspx[/#0000ff]</span></u>[/url] <br /><br />here is my current build <a target="_blank" href="http://www.ragefootball.com/playerList3.php">http://www.ragefootball.com/playerList3.php</a>  <br /><br />  <br /><br />I need to format a few items and have a thumbnail  <br /><br />  <br /><br />thanks for all you're advice it has been a real help <br /><br />  <br /><br />Chris<br />]]></description>
          <pubDate>Fri, 14 Mar 2008 13:54:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190740#post2190740</guid>
        </item>
                <item>
          <title>list view more than one at a time</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190727#post2190727</link>
          <description><![CDATA[Hello all, been doing pretty good in CMS but today I ran into a problem. I need to display 3 results per row. I tried just removing the &lt;br&gt; still they all listed in a row one wide.<br />I then created a table to house the 3 ( yes I know div tags are the new thing but I have been doing tables to long to give up on them). By placing the &lt;?php foreach ($listRows as $record): ?&gt; before the start of the table and &lt;?php endforeach ?&gt; at the end of the main table they do display 3 across like I want but each row is 3 of the same data. and when I move the ?php endforeach ?&gt; or add more it just returns line errors. please help I am sure it is a simple problem. <br /><br />Thanks<br />Chris<br />]]></description>
          <pubDate>Fri, 14 Mar 2008 10:46:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190727#post2190727</guid>
        </item>
                <item>
          <title>how to custom sort a list view in the cms menu</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190533#post2190533</link>
          <description><![CDATA[Hello all, Things have been going along great so far thanks to all of your wonderful advice.<br />I have a question a client using the cms has a list of all there staff, coaches, dancers, players ect... how can they inside the cms list view, sort them? They want for example the head coach to be at the top. I don't see the arrows so they can drag and drop them in any order. Is this possible? <br /><br />Thanks <br />Chris<br />]]></description>
          <pubDate>Mon, 03 Mar 2008 17:29:16 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190533#post2190533</guid>
        </item>
                <item>
          <title>more than one list view record</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190515#post2190515</link>
          <description><![CDATA[Hello all,  <br /><br />I finaly got my menus sorted out and found a new problem. <br /><br />I need to have 2 lists vies stated on one page and when I try that they conflict with each other. is there a way to put 2 in the array field I can't find much on this field <br /><br />havi[font &quot;Courier New&quot;]ing 2 </span> <br /><br /><code>&lt;?php<br /><br />require_once &quot;/www/htdocs/cmsAdmin/lib/viewer_functions.php&quot;;<br />$options = array();<br />$options['tableName']  = 'article';<br />$options['titleField'] = 'title';<br />$options['viewerUrl']  = 'articlePage.php';<br />$options['perPage']    = '';<br />$options['orderBy']    = 'featured DESC, date DESC, title'; <br />$options['pageNum']    = '';<br />$options['where']      = '';<br />$options['useSeoUrls'] = '';<br /><br />list($listRows, $listDetails) = getListRows($options);<br /><br />?&gt;</code><br /> <br /><br />is the problem I need one for categoy menu and one for the list menu  <br /><br />  <br /><br />thanks<br /><br />Edit: Added line breaks to code.<br />]]></description>
          <pubDate>Fri, 29 Feb 2008 11:37:45 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190515#post2190515</guid>
        </item>
              </channel>
    </rss>
  