<?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%3Aciaran_mac</link>
        <description></description>
        <pubDate>Mon, 18 May 2026 03:31:05 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Aciaran_mac&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Remove Licence </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241732#post2241732</link>
          <description><![CDATA[<p>Hi there,</p>
<p>I installed a licence on a CMS but I don't need it anymore. Can I move it to another CMS?</p>

<p>Regard,</p>
<p>Ciaran</p>]]></description>
          <pubDate>Tue, 06 Feb 2018 09:01:06 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241732#post2241732</guid>
        </item>
                <item>
          <title>Where contains</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241468#post2241468</link>
          <description><![CDATA[<p>Hi folks,</p>
<p>I am having a complete mind blank at the moment.</p>
<p>I have a multiple of products and within that I have a list which can have many values. I want to display  all the products that contain the value 3 for the following part:</p>
<p>Product Type (values): &lt;?php echo join(', ', $record['quality:values']); ?&gt;</p>

<p>  list($machineryRecords, $machineryMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'machinery',<br />    'where'       =&gt; 'CONTAINS("$machineryRecords.quality:values", 3)',<br />    'perPage'     =&gt; '9',<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />  ));<br /> </p>
]]></description>
          <pubDate>Fri, 17 Nov 2017 09:02:38 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241468#post2241468</guid>
        </item>
                <item>
          <title>Adding in a CSS element on last item in list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239446#post2239446</link>
          <description><![CDATA[<p>Thanks Daryl!</p>]]></description>
          <pubDate>Wed, 24 Aug 2016 04:24:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239446#post2239446</guid>
        </item>
                <item>
          <title>Adding in a CSS element on last item in list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239433#post2239433</link>
          <description><![CDATA[<p>Hi There,</p>
<p>I am not sure what way this should be put in. I am looking to add in a CSS element for the last list item. Can anyone let me know how to do this? The code that I want to enter is "last" in the div's class "&lt;div class="col-1-5"&gt;" (highlighted within ***************)</p>

<p>My code is:</p>
<p>// load records from 'club_sponsors'<br />  list($club_sponsorsRecords, $club_sponsorsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'club_sponsors',<br />    'limit'       =&gt; '5',<br />    'orderBy'     =&gt; 'RAND()',<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />  ));<br /><br /></p>

<p> &lt;?php foreach ($club_sponsorsRecords as $record): ?&gt;<br />                       &lt;?php foreach ($record['company_logo'] as $index =&gt; $upload): ?&gt;<br />                                ***************&lt;div class="col-1-5"&gt;***************</p>
<p>                                             &lt;a href="&lt;?php echo htmlencode($record['website']) ?&gt;"&gt;&lt;img src="&lt;?php echo htmlencode($upload['thumbUrlPath']) ?&gt;" width="&lt;?php echo $upload['thumbWidth'] ?&gt;" height="&lt;?php echo $upload['thumbHeight'] ?&gt;" alt="&lt;?php echo htmlencode($record['title']) ?&gt;" /&gt;&lt;/a&gt;</p>
<p>                                &lt;/div&gt;<br />                       &lt;?php endforeach ?&gt;    <br />&lt;?php endforeach ?&gt;<br /><br />                &lt;?php if (!$club_sponsorsRecords): ?&gt;<br />                  No records were found!&lt;br/&gt;&lt;br/&gt;<br />                &lt;?php endif ?&gt;<br />                                  &lt;/div&gt;</p>


]]></description>
          <pubDate>Tue, 23 Aug 2016 01:43:04 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239433#post2239433</guid>
        </item>
                <item>
          <title>Joining two tables twice</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239201#post2239201</link>
          <description><![CDATA[<p>I have two tables:</p>
<p>-          Fixtures_Results</p>
<p>-          Clubs</p>
<p>Inside the Clubs, I have a list of clubs and inside them it includes the name of the club, logo etc.</p>
<p>In the Fixtures_Results a typical entry includes the following:</p>
<p>-          Home team (Taken from Club table)</p>
<p>-          Away team (Taken from Club table)</p>
<p>-          Venue (Entered)</p>

<p>Now to the issue.  I want to display the fixture on my website. I can display the Home Team, Away Team and Venue. But I want to show their logos as well.</p>


<p>Here is the code that I am using to display the logo for one the away team.</p>

<p>// load records from 'fixtures_results'</p>
<p>  list($fixtures_resultsRecords, $fixtures_resultsMetaData) = getRecords(array(</p>
<p>    'tableName'   =&gt; 'fixtures_results',</p>
<p>    'leftJoin'   =&gt; array('clubs' =&gt;  'ON clubs.num = fixtures_results.away_team' ),</p>
<p>    'limit'       =&gt; '3',</p>
<p>    'loadUploads' =&gt; true,</p>
<p>    'allowSearch' =&gt; false,</p>
<p>  ));</p>

<p>How would I show the Home Team logo as well?</p>]]></description>
          <pubDate>Wed, 13 Jul 2016 07:55:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239201#post2239201</guid>
        </item>
              </channel>
    </rss>
  