<?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%3Arebjr</link>
        <description></description>
        <pubDate>Mon, 20 Apr 2026 12:55:47 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Arebjr&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>ARCR.com site using CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197346#post2197346</link>
          <description><![CDATA[I just launched my first CMS Builder powered website:<br /><br /><a target="_blank" href="http://www.arcr.com/">http://www.arcr.com/</a><br /><br />CMS Builder is used for virtually all of the content on the site and as a result the customer (Aaron, Riechert, Carpol &amp; Riffle) can easily add and update content to their heart's content. Thank you CMS Builder!<br /><br />Rob<br /><a target="_blank" href="http://www.REBsolutions.com/">http://www.REBsolutions.com/</a><br />]]></description>
          <pubDate>Wed, 13 May 2009 13:51:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197346#post2197346</guid>
        </item>
                <item>
          <title>Re: [Kittybiccy] If statement to style navigation/current page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197267#post2197267</link>
          <description><![CDATA[Have you considered doing this with CSS? It is much easier than trying to do it via CMS Builder and/or PHP. Here's an article that explains the basics:<br /><br /><a target="_blank" href="http://hicksdesign.co.uk/journal/highlighting-current-page-with-css">http://hicksdesign.co.uk/journal/highlighting-current-page-with-css</a><br /><br />Rob<br />]]></description>
          <pubDate>Fri, 08 May 2009 11:28:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197267#post2197267</guid>
        </item>
                <item>
          <title>Re: [Dave] How to split listing records</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196986#post2196986</link>
          <description><![CDATA[I ended up solving it this way, using dragSortOrder as an index into the array:<br /><br /><code>&lt;div class=&quot;span-3 append-1&quot;&gt;<br />&lt;ul&gt;<br />&lt;?php<br />	<span style="color:red">$desired_num = $firsthalf; // Show the first half of the records<br />	foreach ($practice_areasRecords as $record):<br />	if ($record['dragSortOrder'] &gt;= $desired_num ) {</span><br />?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php<br />	}<br />	endforeach;<br />?&gt;<br />&lt;?php if (!$practice_areasRecords): ?&gt;<br />&lt;li&gt;No records were found!&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;/ul&gt;<br />&lt;/div&gt; &lt;!-- // .span-3 append-1 --&gt;<br /><br />&lt;div class=&quot;span-3&quot;&gt;<br />&lt;ul&gt;<br />&lt;?php<br />	<span style="color:red">$desired_num = $firsthalf; // Use to show the rest of the records<br />	foreach ($practice_areasRecords as $record):<br />	if ($record['dragSortOrder'] &lt; $desired_num ) {</span><br />?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php<br />	}<br />	endforeach;<br />?&gt;<br />&lt;/ul&gt;<br />&lt;/div&gt; &lt;!-- // .span-3 --&gt;<br />]]></description>
          <pubDate>Thu, 16 Apr 2009 17:58:07 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196986#post2196986</guid>
        </item>
                <item>
          <title>How to split listing records</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196952#post2196952</link>
          <description><![CDATA[I'm having trouble figuring out how to list half of the records in one div and the other half in another div, sorted by the dragSortOrder. I have the basics working, but I'm using 'num' to get at the records and as a result it's not using the drag order sort. Here's the code I have now for that:<br /><code>  list($practice_areasRecords, $practice_areasMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'practice_areas',<br />    'loadUploads' =&gt; '0',<br />    'allowSearch' =&gt; '0',<br />  ));<br />  <br />  <span style="color:red">// Get number of records to use below when displaying in columns<br />  $count = $practice_areasMetaData['totalRecords'];<br />  $half = $count/2;<br />  $firsthalf = ceil($count/2);</span></code><br /><br />Later on the page I show the records:<br /><br /><code>&lt;div class=&quot;firstColumn&quot;&gt;<br />&lt;ul&gt;<br />&lt;?php<br />	<span style="color:red">$desired_num = $firsthalf; // Show the first half of the records</span><br />	foreach ($practice_areasRecords as $record):<br />	<span style="color:red">if ($record['num'] &lt;= $desired_num</span> ) {<br />?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php<br />	}<br />	endforeach;<br />?&gt;<br />&lt;?php if (!$practice_areasRecords): ?&gt;<br />&lt;li&gt;No records were found!&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;/ul&gt;<br />&lt;/div&gt;<br /><br />&lt;div class=&quot;secondColumn&quot;&gt;<br />&lt;ul&gt;<br />&lt;?php<br />	<span style="color:red">$desired_num = $firsthalf; // Use to show the rest of the records</span><br />	foreach ($practice_areasRecords as $record):<br />	<span style="color:red">if ($record['num'] &gt; $desired_num</span> ) {<br />?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php<br />	}<br />	endforeach;<br />?&gt;<br />&lt;?php if (!$practice_areasRecords): ?&gt;<br />&lt;li&gt;No records were found!&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;/ul&gt;<br />&lt;/div&gt;</code><br /><br />What I'd like to do is query the database and get all the records, get the total count, and then show the first half in the first column and the rest in the second column using some sort of counter so I can be sure to use the dragSortOrder and not the 'num' order. Any examples of doing this? Thanks.<br />]]></description>
          <pubDate>Wed, 15 Apr 2009 18:50:21 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196952#post2196952</guid>
        </item>
                <item>
          <title>Re: [Izadorra] Record Not Found on some pages</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196067#post2196067</link>
          <description><![CDATA[I'm not sure what all your client wants to edit, but if it's just the year then why not just have it update automatically using PHP with something like this:<br /><br /><code>&lt;p&gt;Copyright &amp;copy; &lt;?php echo(date(&quot;Y&quot;)); ?&gt; Nancy Carleton. All rights reserved.&lt;/p&gt;</code><br />]]></description>
          <pubDate>Mon, 02 Mar 2009 14:50:45 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196067#post2196067</guid>
        </item>
              </channel>
    </rss>
  