<?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%3Ajjem</link>
        <description></description>
        <pubDate>Mon, 13 Apr 2026 12:02:14 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Ajjem&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Showing records from several tables on a detail page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232323#post2232323</link>
          <description><![CDATA[<p>Hi Ross,</p>
<p>Here is the missing file (discographie).</p>
<p>About the sorting option I'll try to make it as clear as I can...</p>
<p>I need to be able to sort the records called from another table. For example in the Creations, when I select multiple records in the interpretes field, I need to be able to give a sort order which can be different from what the pulldown shows or from the sorting setting.</p>
<p>Example: the pulldown list shows:</p>
<ol><li>John Doe, piano</li>
<li>Phiharmonia Orchestra</li>
<li>Charles Dutoit, conductor</li>
</ol><p><strong>I'd like it to appear fronted like:</strong></p>
<ol><li>Philharmonia Orchestra</li>
<li>Charles Dutoit, conductor</li>
<li>John Doe, piano</li>
</ol><p>I hope this makes it clearer.</p>
<p>Thanks again,</p>
<p>Jeremy</p>]]></description>
          <pubDate>Wed, 06 Nov 2013 04:30:18 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232323#post2232323</guid>
        </item>
                <item>
          <title>Showing records from several tables on a detail page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232218#post2232218</link>
          <description><![CDATA[<p>Hi Ross,</p>
<p>I'm out of office these days... I'll post the needed information tomorrow.</p>
<p>Thanks,</p>
<p>Jeremy</p>]]></description>
          <pubDate>Wed, 23 Oct 2013 08:54:59 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232218#post2232218</guid>
        </item>
                <item>
          <title>Showing records from several tables on a detail page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232182#post2232182</link>
          <description><![CDATA[<p>Hi Ross,</p>
<p>Here are the files, there is one table I did not create yet, it's the Discography. But I guess the process will be the same as for the others.</p>
<p>Thank you!</p>
<p>Jeremy</p>]]></description>
          <pubDate>Fri, 18 Oct 2013 06:06:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232182#post2232182</guid>
        </item>
                <item>
          <title>Showing records from several tables on a detail page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232148#post2232148</link>
          <description><![CDATA[<p>Hi,</p>
<p>I have 4 tables:</p>
<p>1) Works</p>
<p>2) Interpretes</p>
<p>3) Premieres</p>
<p>4) Discography</p>
<p>here is what I am trying to do:</p>
<p>1) Enter records into the "interpretes" table (name, first_name, function fields)</p>
<p>2) In the  "Premieres" table, I need to make a list field (pull down multivalue) with an advanced MYSQL query that lists the fields from "interpretes" in the following way:</p>
<p>name first_mane (function). In the viewer code I'd need to be able to custom sort them.</p>
<p>3) in the "Works" table, I need to be able to pull the info from the "premieres" table, including the name first_mane (function) fields from the "interpretes" table as well as the custom sorting</p>
<p>Is this possible? I have no idea where to start to solve the custom sorting in point 2) and the point 3). If needed I'd hire you.</p>
<p>Thanks so much for your help,</p>
<p>Jeremy</p>]]></description>
          <pubDate>Thu, 17 Oct 2013 07:08:56 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232148#post2232148</guid>
        </item>
                <item>
          <title>Permalink breaks record display of linked table</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231197#post2231197</link>
          <description><![CDATA[<p>Hi,</p>
<p>just bought the permalink add-on. Since then, for the records I entered a permalink, some information does not appear anymore. All other records which do not have a permalink set, this field is diplaying. Here is the page code at the top of the page:</p>
<p><code>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br /> &lt;?php<br /> $libraryPath = 'cmsAdmin/lib/viewer_functions.php';<br /> $dirsToCheck = array('/chroot/home/jfzbinde/jfzbinden.ch/html/','','../','../../','../../../');<br /> foreach ($dirsToCheck as $dir) { if (@include_once("$dir$libraryPath")) { break; }}<br /> if (!function_exists('getRecords')) { die("Couldn't load viewer library, check filepath in sourcecode."); }<br /> list($oeuvresRecords, $oeuvresMetaData) = getRecords(array(<br /> 'tableName' =&gt; 'oeuvres',<br /> 'where' =&gt; whereRecordNumberInUrl(1),<br /> 'limit' =&gt; '1',<br /> ));<br /> $oeuvresRecord = @$oeuvresRecords[0];<br /> if (!$oeuvresRecord) { dieWith404("Record not found!"); }<br /> ?&gt; <br /> &lt;?php list($editeursRecord) = getRecords(array( <br /> 'tableName' =&gt; 'editeurs', <br /> 'where' =&gt; "num = '{$oeuvresRecord['editeur']}'", <br /> 'limit' =&gt; '1', <br /> )); <br /> $editeursRecord = @$editeursRecord[0]; // get first record <br /> ?&gt; <br /> &lt;!DOCTYPE html&gt;  etc.</code></p>
<p>and here is the concerned issue (in red). </p>
<p><code>&lt;dl class="dl-horizontal"&gt;<br /> &lt;?php if ($oeuvresRecord['texte'] != ""): ?&gt;&lt;dt&gt;Texte:&lt;/dt&gt;&lt;dd&gt;&lt;?php echo $oeuvresRecord['texte'] ?&gt;&lt;/dd&gt;&lt;?php endif ?&gt;<br /> &lt;?php if ($oeuvresRecord['instrumentation'] != ""): ?&gt;&lt;dt&gt;Instrumentation:&lt;/dt&gt;&lt;dd&gt;&lt;?php echo $oeuvresRecord['instrumentation'] ?&gt;&lt;/dd&gt;&lt;?php endif ?&gt;<br /> &lt;?php if ($oeuvresRecord['dedicace'] != ""): ?&gt;&lt;dt&gt;Dédicace:&lt;/dt&gt;&lt;dd&gt;&lt;em&gt;&lt;?php echo $oeuvresRecord['dedicace'] ?&gt;&lt;/em&gt;&lt;/dd&gt;&lt;?php endif ?&gt;<br /> &lt;?php if ($oeuvresRecord['commande'] != ""): ?&gt;&lt;dt&gt;Commande:&lt;/dt&gt;&lt;dd&gt;&lt;?php echo $oeuvresRecord['commande'] ?&gt;&lt;/dd&gt;&lt;?php endif ?&gt;<br /> &lt;?php if ($oeuvresRecord['mouvements'] != ""): ?&gt;&lt;dt&gt;Mouvements:&lt;/dt&gt;&lt;dd&gt;&lt;?php echo $oeuvresRecord['mouvements'] ?&gt;&lt;/dd&gt;&lt;?php endif ?&gt;<br /><span style="color:#ff0000;">&lt;?php if ($editeursRecord['internet'] != ""): ?&gt;&lt;dt&gt;Editeur:&lt;/dt&gt;&lt;dd&gt;&lt;a href="http://&lt;?php echo $editeursRecord['internet']; ?&gt;" /&gt;&lt;?php echo $editeursRecord['raison_sociale']; ?&gt;&lt;/a&gt;&lt;/dt&gt;&lt;?php else: ?&gt;&lt;dt&gt;Editeur:&lt;/dt&gt;&lt;dd&gt;&lt;?php echo $editeursRecord['raison_sociale']; ?&gt;&lt;/dd&gt;&lt;?php endif ?&gt;</span><br /> &lt;?php if ($oeuvresRecord['remarques'] != ""): ?&gt;&lt;dt&gt;Remarques:&lt;/dt&gt;&lt;dd&gt;&lt;?php echo $oeuvresRecord['remarques'] ?&gt;&lt;/dd&gt;&lt;?php endif ?&gt;<br /><br /> &lt;?php if ($oeuvresRecord['oe_creations'] != ""): ?&gt;&lt;dt&gt;Création:&lt;/dt&gt;&lt;dd&gt;&lt;?php echo join(', ', getListLabels('oeuvres', 'oe_creations', $oeuvresRecord['oe_creations'])); ?&gt;&lt;/dd&gt;&lt;?php endif ?&gt;<br /> &lt;/dl&gt;<br /> &lt;hr/&gt;<br /> &lt;?php if (!$oeuvresRecord): ?&gt;<br /> No record found!&lt;br/&gt;&lt;br/&gt;<br /> &lt;?php endif ?&gt;<br /> &lt;!-- /STEP2: Display Records --&gt;<br /><br /><br /> &lt;a href="&lt;?php echo $oeuvresMetaData['_listPage']; ?&gt;"&gt;&amp;lt;&amp;lt; Retour à la liste&lt;/a&gt; - <br /> &lt;a href="mailto:?subject=&lt;?php echo urlencode(thisPageUrl()) ?&gt;"&gt;Envoyer cette page&lt;/a&gt;</code></p>
]]></description>
          <pubDate>Thu, 11 Jul 2013 06:05:26 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231197#post2231197</guid>
        </item>
                <item>
          <title>URGENT: New install on existing Database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231194#post2231194</link>
          <description><![CDATA[<p>my hosting company had a backup of the files... learned the hard way! Thanks for your help anyway.</p>
<p>Jeremy</p>]]></description>
          <pubDate>Thu, 11 Jul 2013 02:56:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231194#post2231194</guid>
        </item>
                <item>
          <title>URGENT: New install on existing Database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231178#post2231178</link>
          <description><![CDATA[<p>Hello,</p>
<p>Just upgraded to latest version of CMS Builder. I did a DB backup before doing it. Somehow, I used a new ftp software that did replace all the CMSAdmin folder instead of uploading the files into it.</p>
<p>Now when I try to login in, it goes to the installer, and doesn't find the backup file. What can I do?</p>
<p>Thanks for your help,</p>
<p>Jeremy</p>
]]></description>
          <pubDate>Wed, 10 Jul 2013 04:31:18 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231178#post2231178</guid>
        </item>
                <item>
          <title>Product listing: check two category fields</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231160#post2231160</link>
          <description><![CDATA[<p>That's it... thanks a lot.</p>
<p>Jeremy</p>]]></description>
          <pubDate>Tue, 09 Jul 2013 00:19:59 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231160#post2231160</guid>
        </item>
                <item>
          <title>Product listing: check two category fields</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231143#post2231143</link>
          <description><![CDATA[<p>Hi,</p>
<p>I do have a listing of musical works. On a one page layout, it selects works from different categories ID and put them under subtitles.</p>
<p>For now this is my code (which is working) but I need it to check "categorie2" field each time as well because some works appear in 2 different categories (I made two categories fields in my "works" table).</p>
<p>Thanks for your help</p>
<p>Jeremy</p>
<p><code>&lt;!-- Musique cordes --&gt;<br />         &lt;section id="oeuvrescordes"&gt;<br />          &lt;div class="page-header"&gt;<br />          &lt;h3&gt;Cordes&lt;/h3&gt;<br />          &lt;/div&gt;<br />          &lt;?php foreach ($oeuvresRecords as $record): ?&gt;<br /><span style="color:#ff0000;">          &lt;?php if ($record['categorie'] == '12'): ?&gt;</span><br />          &lt;h4&gt;&lt;?php echo $record['titre'] ?&gt;&lt;/h4&gt;<br />          &lt;p&gt;&lt;?php echo $record['formation'] ?&gt;&lt;/p&gt;<br />          &lt;p&gt;&lt;a href="&lt;?php echo $record['_link'] ?&gt;"&gt;Détails&lt;/a&gt;&lt;/p&gt;<br />          &lt;?PHP endif ?&gt;<br />          &lt;?php endforeach; ?&gt;<br />          &lt;/section&gt;<br /> &lt;!--section --&gt;<br />&lt;!-- Musique vents --&gt;<br />         &lt;section id="oeuvresvents"&gt;<br />          &lt;div class="page-header"&gt;<br />          &lt;h3&gt;Vents&lt;/h3&gt;<br />          &lt;/div&gt;<br />          &lt;?php foreach ($oeuvresRecords as $record): ?&gt;<br /><span style="color:#ff0000;">          &lt;?php if ($record['categorie'] == '13'): ?&gt;</span><br />          &lt;h4&gt;&lt;?php echo $record['titre'] ?&gt;&lt;/h4&gt;<br />          &lt;p&gt;&lt;?php echo $record['formation'] ?&gt;&lt;/p&gt;<br />          &lt;p&gt;&lt;a href="&lt;?php echo $record['_link'] ?&gt;"&gt;Détails&lt;/a&gt;&lt;/p&gt;<br />          &lt;?PHP endif ?&gt;<br />          &lt;?php endforeach; ?&gt;<br />          &lt;/section&gt;<br /> &lt;!--section --&gt;<br />&lt;!-- Musique vents --&gt;<br />         &lt;section id="oeuvresmixte"&gt;<br />          &lt;div class="page-header"&gt;<br />          &lt;h3&gt;Instruments mixtes&lt;/h3&gt;<br />          &lt;/div&gt;<br />          &lt;?php foreach ($oeuvresRecords as $record): ?&gt;<br /><span style="color:#ff0000;">          &lt;?php if ($record['categorie'] == '14'): ?&gt;</span><br />          &lt;h4&gt;&lt;?php echo $record['titre'] ?&gt;&lt;/h4&gt;<br />          &lt;p&gt;&lt;?php echo $record['formation'] ?&gt;&lt;/p&gt;<br />          &lt;p&gt;&lt;a href="&lt;?php echo $record['_link'] ?&gt;"&gt;Détails&lt;/a&gt;&lt;/p&gt;<br />          &lt;?PHP endif ?&gt;<br />          &lt;?php endforeach; ?&gt;<br />          &lt;/section&gt;<br /> &lt;!--section --&gt;<br /></code></p>
]]></description>
          <pubDate>Mon, 08 Jul 2013 07:50:04 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231143#post2231143</guid>
        </item>
                <item>
          <title>Showing records from 2 tables</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231093#post2231093</link>
          <description><![CDATA[<p>Hi,</p>
<p>I will try to make this clearer, sorry.</p>
<p>I first enter the first_name and the name of the performers in the "performers" table.</p>
<p>In the "Creations" table, I enter date, venue, etc. and I can then choose a performer in a list (multi check list) that comes from the "perfoermers" table.</p>
<p>I then create a work in the "works" table, where I can associate a creation to it (drawn from the "creations" table). In that multi check field I was able to show the date and city but the performer is shown only by its "num" and not first_name, name. See attached file.</p>
<p>In clear;)</p>
<p>I am trying to associate a creation that has one or more performers to a work.</p>

]]></description>
          <pubDate>Mon, 01 Jul 2013 08:39:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231093#post2231093</guid>
        </item>
                <item>
          <title>Showing records from 2 tables</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231041#post2231041</link>
          <description><![CDATA[<p>Hello,</p>
<p>This doesn't concern the front end but only cmsAdmin.</p>
<p>I have 3 tables:</p>
<p>"works", "creations", "performers".</p>
<p>in the "creations" table, I have a list fields where I can select "performers" (by first_name and name).</p>
<p>in the "works" table, I would like to be able to select from a list that comes from the "creations" table.</p>
<p>it works but I'd like to show the "performers"  first_name, and  name. For now it only shows  "num" field, which doesn't help.</p>
<p>Thanks for your help</p>]]></description>
          <pubDate>Fri, 21 Jun 2013 06:16:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231041#post2231041</guid>
        </item>
                <item>
          <title>show multiple records under a same article</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229445#post2229445</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>The one section solution was indeed the best idea.</p>
<p>Thanks again for your suggestion!</p>
<p>Jeremy</p>]]></description>
          <pubDate>Wed, 13 Feb 2013 12:11:49 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229445#post2229445</guid>
        </item>
                <item>
          <title>show multiple records under a same article</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229441#post2229441</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>thanks for you reply. Yes they are linked as in the knowledge base you mentioned.</p>
<p>I am trying to see how I could combone the two sections and let you know how it worked out.</p>
<p>Thank you,</p>
<p>Jeremy</p>]]></description>
          <pubDate>Wed, 13 Feb 2013 10:49:52 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229441#post2229441</guid>
        </item>
                <item>
          <title>show multiple records under a same article</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229435#post2229435</link>
          <description><![CDATA[<p>Hello,</p>
<p>I am trying to set up an admin control of a slider.</p>
<p>1) I created a <span style="color:#ff0000;">"Slides"</span> section where the user just enters a slide id and a background image <span style="color:#ff0000;">(in red below)</span>. I will the include the correct code from the code generator.</p>
<p>Within those "Slides" there are text and "front" images that have to be controled from the admin.</p>
<p>2) I created a <span style="color:#339966;">slide_images section</span> (as a category section) where the user can upload the "front images" and other informations into different fields<span style="color:#339966;"> (in green below).</span></p>

<p>The structure would be:</p>
<p>&lt;section id="feature_slider" class=""&gt;</p>
<p>&lt;article class="slide" <span style="color:#ff0000;">id="showcasing"</span> style="background: url('img/backgrounds<span style="color:#ff0000;">/landscape.png</span>') repeat-x top center;"&gt;</p>
<p>       &lt;img class="asset <span style="color:#339966;">left-30 sp600 t120 z1</span>" src="img/slides/scene1/<span style="color:#339966;">macbook.png</span>" /&gt;</p>
<p>       &lt;div class="info"&gt;<br />       &lt;h2&gt;<span style="color:#339966;">Beautiful theme for showcasing your works.</span>&lt;/h2&gt;<br />       &lt;/div&gt;<br /> &lt;/article&gt;<br /> &lt;article class="slide" <span style="color:#ff0000;">id="ideas"</span> style="background: url('img/backgrounds/<span style="color:#ff0000;">aqua.jpg</span>') repeat-x top center;"&gt;<br />       &lt;div class="info"&gt;<br />      &lt;h2&gt;<span style="color:#339966;">We love to turn ideas into beautiful things.</span>&lt;/h2&gt;<br />      &lt;/div&gt;<br />      &lt;img class="asset <span style="color:#339966;">left-480 sp600 t260 z1</span>" src="img/slides/scene2/<span style="color:#339966;">left.png</span>" /&gt;<br />      &lt;img class="asset <span style="color:#339966;">left-210 sp600 t213 z2</span>" src="img/slides/scene2/<span style="color:#339966;">middle.png</span>" /&gt;<br />      &lt;img class="asset <span style="color:#339966;">left60 sp600 t260 z1</span>" src="img/slides/scene2/<span style="color:#339966;">right.png</span>" /&gt;<br /> &lt;/article&gt;<br /> &lt;article class="slide" <span style="color:#ff0000;">id="tour"</span> style="background: url('img/backgrounds/<span style="color:#ff0000;">color-splash.jpg</span>') repeat-x top center;"&gt;<br /> &lt;img class="asset<span style="color:#339966;"> left-472 sp650 t210 z3</span>" src="img/slides/scene3/ipad.png" /&gt;<br /> &lt;img class="asset <span style="color:#339966;">left-365 sp600 t270 z4</span>" src="img/slides/scene3/iphone.png" /&gt;<br /> &lt;img class="asset l<span style="color:#339966;">eft-350 sp450 t135 z2"</span> src="img/slides/scene3/desktop.png" /&gt;<br /> &lt;img class="asset<span style="color:#339966;"> left-185 sp550 t220 z1</span>" src="img/slides/scene3/macbook.png" /&gt;<br /> &lt;div class="info"&gt;<br /> &lt;h2&gt;<span style="color:#339966;">Fully Responsive theme&lt;/h2&gt;</span><br /><span style="color:#339966;"> &lt;a href="features.html"&gt;TOUR THE PRODUCT&lt;/a&gt;</span><br /> &lt;/div&gt;<br /> &lt;/article&gt;<br /> &lt;article class="slide"<span style="color:#ff0000;"> id="responsive"</span> style="background: url('img/backgrounds/<span style="color:#ff0000;">indigo.jpg</span>') repeat-x top center;"&gt;<br /> &lt;img class="asset <span style="color:#339966;">left-472 sp600 t120 z3</span>" src="img/slides/scene4/html5.png" /&gt;<br /> &lt;img class="asset<span style="color:#339966;"> left-190 sp500 t120 z2"</span> src="img/slides/scene4/css3.png" /&gt;<br /> &lt;div class="info"&gt;<br /> &lt;h2&gt;<br /><span style="color:#339966;">Responsive &lt;strong&gt;HTML5 &amp; CSS3&lt;/strong&gt;</span><br /><span style="color:#339966;">Theme</span><br /> &lt;/h2&gt; <br /> &lt;/div&gt;<br /> &lt;/article&gt; <br /> &lt;/section&gt;</p>
<p>How can include the<span style="color:#339966;"> slide_images </span> information within the "Slides". Could anyone help?</p>
<p>Many Thanks,</p>
<p>Jeremy</p>]]></description>
          <pubDate>Wed, 13 Feb 2013 08:13:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229435#post2229435</guid>
        </item>
                <item>
          <title>License expired?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229332#post2229332</link>
          <description><![CDATA[<p>Hi, I had for long a license for a website. I just wanted to access the admin and it says: your license has expired.</p>
<p>What do I have to do. I did not know that CMS Builder licenses expire...</p>
<p>Thanks</p>]]></description>
          <pubDate>Tue, 05 Feb 2013 05:35:03 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229332#post2229332</guid>
        </item>
                <item>
          <title>Re: [chris] list categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201658#post2201658</link>
          <description><![CDATA[Chris thanks for the quick reply. I tested you solution which is going to to corrrect way. the isseu now is that the items are listed under each category and subcategory.<br /><br />So I have all CD's listed under to top category. Then part of them are listed under the first sub-category again. Then they are listed again in the second subcategory.... see new attachement.<br /><br />Sorry for the trouble...<br />]]></description>
          <pubDate>Fri, 05 Feb 2010 16:29:40 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201658#post2201658</guid>
        </item>
                <item>
          <title>Re: [chris] list categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201655#post2201655</link>
          <description><![CDATA[Hi Chris,<br /><br />See attachement....<br />]]></description>
          <pubDate>Fri, 05 Feb 2010 15:49:23 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201655#post2201655</guid>
        </item>
                <item>
          <title>Re: [chris] list categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201592#post2201592</link>
          <description><![CDATA[Hi Chris,<br /><br />Thanks for the hint. here is the full page code. I still get only the (sub)categories listed as wanted but the content (&lt;?php echo $discographyRecord['title'] ?&gt;) doesn't appear... I'd much appreciate another &quot;coup de pouce&quot; (help)...<br />Result of that page in the attached screenshot<br /><br /><br /><code>&lt;?php<br />  require_once &quot;/.../.../.../.../html/cmsAdmin/lib/viewer_functions.php&quot;;<br />  list($cd_categoriesRecords, $selectedCategory) = getCategories(array( <br />    'tableName'   =&gt; 'cd_categories', <br />  )); <br /> <br />  list($discographyRecords, $discographyMetaData) = getRecords(array( <br />    'tableName'   =&gt; 'discography', <br />  )); <br /> <br />?&gt;<br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br />&lt;head&gt;<br />&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;<br />&lt;title&gt; Discography&lt;/title&gt;<br />&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot; /&gt;<br />&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/360player.css&quot; /&gt;<br />&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;&gt;&lt;/script&gt;<br />&lt;script src=&quot;http://cdn.jquerytools.org/1.1.2/full/jquery.tools.min.js&quot;&gt;&lt;/script&gt;<br />&lt;script type=&quot;text/javascript&quot; src=&quot;js/berniecode-animator.js&quot;&gt;&lt;/script&gt;<br />&lt;script src=&quot;js/soundmanager2.js&quot; language='JavaScript' type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br />&lt;script src=&quot;js/360player.js&quot; language='JavaScript' type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br />&lt;/head&gt;<br />&lt;body&gt;<br />&lt;?php include('includes/header.html'); ?&gt;<br />&lt;div id=&quot;contentWrapper&quot;&gt;<br />  &lt;div class=&quot;pageTitle&quot;&gt;Discography&lt;/div&gt;<br />  &lt;!-- InstanceBeginEditable name=&quot;pageContent&quot; --&gt;<br />  &lt;div class=&quot;pageContent&quot;&gt;<br />    &lt;ul&gt;<br />      <br />      &lt;?php foreach ($cd_categoriesRecords as $categoryRecord): ?&gt;<br />      &lt;?php echo $categoryRecord['_listItemStart'] ?&gt;<br />      &lt;?php if ($categoryRecord['_isSelected']): ?&gt;<br />      &lt;b&gt;<br />      &lt;?php endif ?&gt;<br />      &lt;?php echo $categoryRecord['name'] ?&gt;<br />      &lt;?php if ($categoryRecord['_isSelected']): ?&gt;<br />      &lt;/b&gt;<br />      &lt;?php endif ?&gt;<br />      <br />      &lt;?php foreach ($discographyRecords as $discographyRecord): ?&gt; <br />    &lt;?php if ($discographyRecord['category'] != $categoryRecord['num']) { continue; } // skip records which aren't in this category ?&gt; <br />    &lt;?php echo $discographyRecord['title'] ?&gt;<br />  &lt;?php endforeach ?&gt;  <br />      <br />      <br />      &lt;?php echo $categoryRecord['_listItemEnd'] ?&gt;<br />      &lt;?php endforeach ?&gt;<br />    &lt;/ul&gt;<br />   <br />    &lt;?php if (!$discographyRecords): ?&gt;<br />    No records were found!&lt;br/&gt;<br />    &lt;br/&gt;<br />    &lt;?php endif ?&gt;<br />  &lt;/div&gt;<br /> &lt;/div&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;</code><br />]]></description>
          <pubDate>Wed, 03 Feb 2010 15:02:57 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201592#post2201592</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] list categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201468#post2201468</link>
          <description><![CDATA[Thanks Jerry,<br /><br />It definitely got me closer. The screenshot 1.png is what I get. Screenshot 2.png is what I try to achieve. So it is like a menu tree, but the titles of the articles have to show up directly under the categories or subcategories.<br /><br />Here is the code I used:<br /><code>    &lt;ul&gt;<br />      &lt;li&gt;&lt;a href=&quot;?&quot;&gt;(All Articles)&lt;/a&gt;&lt;/li&gt;<br />      &lt;?php foreach ($cd_categoriesRecords as $categoryRecord): ?&gt;<br />      &lt;?php echo $categoryRecord['_listItemStart'] ?&gt;<br />      &lt;?php if ($categoryRecord['_isSelected']): ?&gt;<br />      &lt;b&gt;<br />      &lt;?php endif ?&gt;<br />      &lt;a href=&quot;?category=&lt;?php echo $categoryRecord['num'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;<br />      &lt;?php if ($categoryRecord['_isSelected']): ?&gt;<br />      &lt;/b&gt;<br />      &lt;?php endif ?&gt;<br />      &lt;?php echo $categoryRecord['_listItemEnd'] ?&gt;<br />      &lt;?php endforeach ?&gt;<br />    &lt;/ul&gt;<br />    &lt;!-- content --&gt;<br />    &lt;?php foreach ($discographyRecords as $record): ?&gt;<br />    &lt;?php echo $record['title'] ?&gt;&lt;br/&gt;<br />    &lt;?php endforeach ?&gt;<br />    &lt;?php if (!$discographyRecords): ?&gt;<br />    No records were found!&lt;br/&gt;<br />    &lt;br/&gt;<br />    &lt;?php endif ?&gt;<br />    &lt;!-- end content --&gt;</code><br />Wondering if I could integrate the content part into the menu. I actually do not need it as a menu, it is more a tree in list view. Any hint would be great. Thanks<br />]]></description>
          <pubDate>Thu, 28 Jan 2010 15:45:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201468#post2201468</guid>
        </item>
                <item>
          <title>list categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201441#post2201441</link>
          <description><![CDATA[Hi,<br /><br />I would like sort records the list view like following:<br /><br />Category 1<br />   Sub Category 1<br />   Product 1<br />   Product 2<br />   Product 3<br />   Sub Category 2<br />   Product 1<br />   Product 2<br />   Product 3<br /><br />Category 2<br />   Sub category 1<br />   Product 4<br />   Product 5<br />   Product 6<br /><br />I did start to do it manually like this<br /><br /><code>    &lt;!-- Solo Records --&gt;<br />    &lt;h2&gt;Solo recording&lt;/h2&gt;<br />    &lt;?php    list($discographyRecords, $discographyMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'discography',<br />	'where' =&gt; 'solo_orchestral = &quot;solo&quot;',<br />  )); ?&gt;<br />    &lt;?php foreach ($discographyRecords as $discographyRecords): ?&gt;<br />    &lt;?php echo $discographyRecords['orchestra'] ?&gt;&lt;br/&gt;<br />    &lt;?php echo $discographyRecords['conductor'] ?&gt;&lt;br/&gt;<br />    &lt;?php echo $discographyRecords['title'] ?&gt;&lt;br/&gt;   etc</code><br />then<br /><br /><code>   &lt;!-- Orchestra Records --&gt;<br />    &lt;h2&gt;Orchestral Recordings&lt;/h2&gt;<br />    &lt;?php    list($discographyRecords, $discographyMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'discography',<br />	'where' =&gt; 'solo_orchestral = &quot;orchestra&quot;',<br />  )); ?&gt;<br />    &lt;?php foreach ($discographyRecords as $discographyRecords): ?&gt;<br />	&lt;?php //echo $discographyRecords['orchestra'] ?&gt;&lt;br/&gt;<br />	&lt;?php echo $discographyRecords['conductor'] ?&gt;&lt;br/&gt;<br />    &lt;?php echo $discographyRecords['title'] ?&gt;&lt;br/&gt;</code><br /><br />I cannot find anything on this forum where I could start to dynamically set this up. Any hint would be great... Thanks for your help<br />]]></description>
          <pubDate>Wed, 27 Jan 2010 16:44:58 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201441#post2201441</guid>
        </item>
                <item>
          <title>Re: [Dave] Image vars</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193061#post2193061</link>
          <description><![CDATA[Sorry about that, there is no error message and it works.<br /><br />The fact is my gallery does not work because I have the       &lt;?php break; ?&gt; to show only one image per record in the List.<br /><br />The &lt;a rel=&quot;rokbox[650 424] <b>(&lt;?php echo $record['num']?&gt;)&quot;</b> was to group the rest of the pictures of each record (album) into a slideshow (mootools). <br /><br />[:/]<br />]]></description>
          <pubDate>Fri, 22 Aug 2008 09:40:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193061#post2193061</guid>
        </item>
                <item>
          <title>Re: [Dave] Image vars</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193058#post2193058</link>
          <description><![CDATA[Hi Dave, it does not work... already tried...<br />J<br />]]></description>
          <pubDate>Fri, 22 Aug 2008 08:58:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193058#post2193058</guid>
        </item>
                <item>
          <title>Image vars</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193055#post2193055</link>
          <description><![CDATA[Hi,<br />I would like the record num and not the upload num, below in the bold php tag. How do I get this done? Have been searching through the posts with no success...<br /><br />Thanks for your help.<br /><br />(By the way, Dave, thanks for the help on the contact form issue...)<br />Jeremy<br /><br /><code>&lt;?php foreach ($galleryRecords as $record): ?&gt;<br />      &lt;h3&gt;&lt;?php echo $record['title'] ?&gt;&lt;/h3&gt;<br />      &lt;p&gt;<br />        &lt;?php foreach ($record['pictures'] as $upload): ?&gt;<br /><br />      &lt;?php if ($upload['hasThumbnail']): ?&gt;<br />      &lt;a rel=&quot;rokbox[650 424](<b>&lt;?php echo $records['num']?&gt;</b>)&quot; href=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; title=&quot;&quot;&gt;&lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['thumbWidth'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['thumbHeight'] ?&gt;&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br/&gt;<br />      &lt;?php elseif ($upload['isImage']): ?&gt;<br />      &lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;&lt;br/&gt;<br />      &lt;?php else: ?&gt;<br />      &lt;a href=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot;&gt;Download &lt;?php echo $upload['filename'] ?&gt;&lt;/a&gt;&lt;br/&gt;<br />      &lt;?php endif ?&gt;<br />      &lt;?php break; ?&gt;<br />      &lt;?php endforeach ?&gt;&lt;/p&gt; </code><br />]]></description>
          <pubDate>Fri, 22 Aug 2008 05:37:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193055#post2193055</guid>
        </item>
                <item>
          <title>undefined variable: SETTINGS in init.php</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2192986#post2192986</link>
          <description><![CDATA[Hi,<br /><br />I'm using 1.22 CMS Builder. I get this message on my contact form page:<br /><blockquote><br />Notice: Undefined variable: SETTINGS in /home/www/d5f077c.../web/cmsAdmin/lib/init.php on line 32 Notice: Undefined variable: SETTINGS in /home/www/d5f077.../web/cmsAdmin/lib/viewer_functions.php on line 9 Error: You must install the program before you can use the viewers.<br /></blockquote><br />Any idea of what the problem is?<br />Thanks,<br />Jeremy<br />]]></description>
          <pubDate>Mon, 18 Aug 2008 08:21:40 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2192986#post2192986</guid>
        </item>
                <item>
          <title>Re: [Dave] Multiple View in V.1.15</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191706#post2191706</link>
          <description><![CDATA[Thanks Dave, works perfectly,<br />J<br />]]></description>
          <pubDate>Sat, 24 May 2008 08:19:18 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191706#post2191706</guid>
        </item>
              </channel>
    </rss>
  