<?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%3AryanGT</link>
        <description></description>
        <pubDate>Wed, 13 May 2026 00:52:08 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3AryanGT&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Jason] Tag Cloud</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213686#post2213686</link>
          <description><![CDATA[Hi Jason,<br /><br />Thats exactly what i need, but instead of counting duplicates could the function remove duplicate values?<br /><br />Also i am struggling with extracting the tags from the array, no matter what i do i seem to always just get the numerical values out of the array, needless to say php coding is not my strongest area.<br /><br />Also when returning the results it would be really good to have the functionality to limit the number of results and display them in a random order.<br /><br />Again your help would be greatly appreciated.<br /><br />Many thanks<br /><br />Ryan<br />]]></description>
          <pubDate>Fri, 28 Oct 2011 10:15:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213686#post2213686</guid>
        </item>
                <item>
          <title>Tag Cloud</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213661#post2213661</link>
          <description><![CDATA[Hi all,<br /><br />i was just wondering how i would go about creating a tag cloud from one field across multiple tables?<br /><br />I have two tables called Reviews and Features, both of which have a text field called page_keywords. I would really like to use the information in these fields to create a tag cloud.<br /><br />I have tried a few things but to no avail, (including left join, and array merge) im sure that the php explode function will have to be involved somewhere, but everything i try doenst seem to work.<br /><br />I think that array merge is the correct way to go, and would really appreciate some help.<br /><br />Many thanks<br />]]></description>
          <pubDate>Thu, 27 Oct 2011 11:23:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213661#post2213661</guid>
        </item>
                <item>
          <title>Re: [Jason] Website Search - with images</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213584#post2213584</link>
          <description><![CDATA[Hi Jason,<br /><br />excellent, thats certainly a step in the right direction.<br /><br />However i am getting some very strange results.<br /><br />The image that is being returned is the same image for all the records, and the image that is being displayed isn't in the searchable tables.<br /><br />not too sure whats happening to be honest.<br /><br />I have attached my viewing code, to see if it is something in  there.<br /><br /><code>    &lt;?php $counter=0; ?&gt;<br />  &lt;?php foreach ($searchRows as $record): ?&gt;<br />  <br />  &lt;?php $counter++; ?&gt; &lt;?php <br />       $images = array(); <br />        <br />       if (array_key_exists($record['tablename'], $tableNameToUploadField)) { <br />	 $query = &quot;SELECT * FROM `{$TABLE_PREFIX}uploads` WHERE tableName = '&quot;.mysql_escape($record['tablename']).&quot;' <br />	         AND fieldName = '&quot;.mysql_escape($tableNameToUploadField[$record['tablename']]).&quot;' <br />		     AND recordNum = '&quot;.intval($record['num']).&quot;'&quot;; <br />		      <br />	 $images = mysql_query_fetch_all_assoc($query); <br /><br />       } <br />     ?&gt; <br />     &lt;?php echo $images?&gt;<br />  &lt;?php if ($counter % 2):?&gt;<br />  &lt;div class=&quot;halfbox&quot; style=&quot;margin-right:20px; background: center no-repeat url(&lt;?php echo $upload['urlPath'] ?&gt;);&quot;&gt;<br /> &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;img src=&quot;/images/blank.gif&quot; width=&quot;280&quot; height=&quot;250&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;<br />  &lt;div class=&quot;info&quot;&gt;<br />    &lt;h3 class=&quot;headline&quot;&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['_title'] ?&gt;&lt;/a&gt;&lt;/h3&gt;<br />  &lt;/div&gt;<br />  &lt;/div&gt;<br />  &lt;?php else:?&gt;<br />   &lt;div class=&quot;halfbox&quot; style=&quot;background: center no-repeat url(&lt;?php echo $upload['thumbUrlPath'] ?&gt;);&quot;&gt;<br /> &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;img src=&quot;/images/blank.gif&quot; width=&quot;280&quot; height=&quot;250&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;<br />  &lt;div class=&quot;info&quot;&gt;<br />    &lt;h3 class=&quot;headline&quot;&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['_title'] ?&gt;&lt;/a&gt;&lt;/h3&gt;<br />  &lt;/div&gt;<br />  &lt;/div&gt;<br />  &lt;?php endif;?&gt;<br />  &lt;?php endforeach ?&gt;</code><br /><br />Again your help is greatly appreciated.<br /><br />Many thanks<br />]]></description>
          <pubDate>Thu, 20 Oct 2011 03:59:55 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213584#post2213584</guid>
        </item>
                <item>
          <title>Website Search - with images</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213570#post2213570</link>
          <description><![CDATA[Hi all,<br /><br />I have been searching the forums, and cant find a solution for the problem that i am having.<br /><br />I have created a search page for the website that will return results from three tables. but i was wondering how i go about getting the images from the uploads table to the relative article.<br /><br />i have created a working page search, but just need to tie in the uploads table. i have the following as a starting block:<br /><code> $searchOptions = array();<br />      $searchOptions['keywords'] = @$_REQUEST['s'];<br />      $searchOptions['perPage']  = &quot;14&quot;;<br />	  $searchOptions['debugSql'] = &quot;1&quot;; <br /><br />      $searchTables = array();<br />      $searchTables['features'] = array(<br />        'viewerUrl'       =&gt; '/features/article.php',<br />        'titleField'      =&gt; 'title',<br />        'summaryField'    =&gt; 'content', <br />        'searchFields'    =&gt;  array('title','content'),<br />		'field1' =&gt; 'updatedDate'<br />      );<br />	   $searchTables['reviews'] = array(<br />        'viewerUrl'       =&gt; '/reviews/article.php',<br />        'titleField'      =&gt; 'title',<br />        'summaryField'    =&gt; 'content', <br />        'searchFields'    =&gt;  array('title','content'),<br />		'field1' =&gt; 'updatedDate'<br />      );<br />	   $searchTables['news'] = array(<br />        'viewerUrl'       =&gt; '/news/event.php',<br />        'titleField'      =&gt; 'title',<br />        'summaryField'    =&gt; 'content', <br />        'searchFields'    =&gt;  array('title','content'),<br />		'field1' =&gt; 'updatedDate'<br />      );<br />      list($searchRows, $searchDetails) = searchMultipleTables($searchTables, $searchOptions);<br />      ?&gt;</code><br /><br />Any help would be greatly appreciated.<br /><br />Many thanks<br /><br />Ryan<br />]]></description>
          <pubDate>Wed, 19 Oct 2011 07:33:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213570#post2213570</guid>
        </item>
                <item>
          <title>Re: [Jason] Join Tables over a hierarchy</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212505#post2212505</link>
          <description><![CDATA[Hi Jason,<br /><br />Yeah that sounds like it might do it.<br /><br />Could you give me an example of how i would extract the title information from tableB (assuming the field name would be title)?<br /><br />If you can tell me that i should be able to figure the rest out<br /><br />Cheers - Ryan<br />]]></description>
          <pubDate>Tue, 02 Aug 2011 15:52:20 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212505#post2212505</guid>
        </item>
                <item>
          <title>Join Tables over a hierarchy</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212495#post2212495</link>
          <description><![CDATA[Hi all,<br /><br />I was just wondering if it possible to join tables in a hierarchy situation.<br /><br />I have 3 tables linked to each other through 2 different fields.<br /><code>tableA (level 1)<br />   )      <br />   -  relatedField1 (dropdown Menu)<br />   )<br />tableB (level 2)<br />   )<br />   -  relatedField2 (dropdown Menu)<br />   )<br />tableC (level 3)</code><br />I need all the results to be returned in one array, so that i can display all the relating data to tableA<br /><br />Any help would be greatly appreciated.<br /><br />Many thanks - Ryan<br />]]></description>
          <pubDate>Tue, 02 Aug 2011 08:53:27 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212495#post2212495</guid>
        </item>
                <item>
          <title>Article Listing - Advanced sorting</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212397#post2212397</link>
          <description><![CDATA[Hi all,<br /><br />i just wondered if the following was possible in the admin article listing sort options?<br /><br />i have created a section for events, with two fields (event_start &amp; event_end) i would like the upcoming events to display first in the listing (with he start date that is closest to toady's date), then when there are no more future events, display the expired events by that ended closest to today's date.<br /><br />I searched the forums as i thought that someone else may have asked the same question, but couldn't find anything.<br /><br />Thanks - Ryan<br />]]></description>
          <pubDate>Wed, 27 Jul 2011 09:27:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212397#post2212397</guid>
        </item>
                <item>
          <title>Re: [kkegans] Problem with new install of 2.11 and Instant Website</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212388#post2212388</link>
          <description><![CDATA[Hey Kurt,<br /><br />I found the solution to my problem, maybe it is the same for you.<br /><br />See my last post in <a target="_blank" href="http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/WYSIWYG_not_displaying_P89088/">http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/WYSIWYG_not_displaying_P89088/</a><br /><br />Best of luck - Ryan<br />]]></description>
          <pubDate>Tue, 26 Jul 2011 04:08:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212388#post2212388</guid>
        </item>
                <item>
          <title>Re: [ross] WYSIWYG not displaying</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212387#post2212387</link>
          <description><![CDATA[Hi Ross,<br /><br />I fixed it!! - Managed to find the code hidden away in the tiny_mce_gzip.php file around about on line 230.<br /><br />I changed it to the following to match the file structure on the server.<br /><br /><code>// Set base URL for where tinymce is loaded from<br />		$buffer = &quot;var tinyMCEPreInit = {base : '/cmsAdmin/3rdParty/tiny_mce/'};&quot;;</code><br /><br />Hope this will help other people if they are having similar troubles.<br /><br />Thanks for all your help guys &amp; gals @ interactive tools.<br /><br />Many thanks - Ryan<br />]]></description>
          <pubDate>Tue, 26 Jul 2011 04:05:56 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212387#post2212387</guid>
        </item>
                <item>
          <title>Re: [Jason] WYSIWYG not displaying</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212376#post2212376</link>
          <description><![CDATA[Hi Jason,<br /><br />i have been looking on the tinyMCE support forums and have found something that could help, im just not too sure where i could integrate the change into the CMSB code.<br /><br />The code that i think i need to integrate into CMSB is:<br /><br /><code>var tinyMCEPreInit = {base : 'path_to_tinymce_files'};</code><br /><br />If you could tell me where i could include this then i can play around with the base variable until i can get it to work correctly.<br /><br />Really do need to get this sorted out, as it is for a client with quite a tight deadline.<br /><br />Thanks once again - Ryan<br />]]></description>
          <pubDate>Mon, 25 Jul 2011 07:08:58 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212376#post2212376</guid>
        </item>
                <item>
          <title>Re: [Jason] WYSIWYG not displaying</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212339#post2212339</link>
          <description><![CDATA[Hi Jason,<br /><br />i dont think that it is a domain thing. i have pointed the full domain (gtserver.co.uk) into the development folder, but the WYSIWYG still isn't displaying.<br /><br />I have submitted a support request with the hosts, to see if i can configure the BASE_URL. I will let you know what they say.<br /><br />Many thanks - Ryan<br />]]></description>
          <pubDate>Thu, 21 Jul 2011 04:07:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212339#post2212339</guid>
        </item>
                <item>
          <title>Re: [Damon] WYSIWYG not displaying</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212315#post2212315</link>
          <description><![CDATA[Hi Damon,<br /><br />Thanks for all your suggestions, but nothing has fixed the problem, i have filled in a support request.<br /><br />Thanks anyway - Ryan<br />]]></description>
          <pubDate>Wed, 20 Jul 2011 04:45:02 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212315#post2212315</guid>
        </item>
                <item>
          <title>WYSIWYG not displaying</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212294#post2212294</link>
          <description><![CDATA[Hi, i have used CMSB a number of times, but this is the first time that i have had any problems with the installation.<br /><br />the WYSIWYG is not showing up, all i get is two hyperlinks one for format and one for font size. (see attachment)<br /><br />I have been through the FTP and tried to change all the .js files in the tinyMCE folder to 755, but no luck.<br /><br />Any help would be greatly appreciated.<br /><br />Many thanks - Ryan<br />]]></description>
          <pubDate>Tue, 19 Jul 2011 04:46:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212294#post2212294</guid>
        </item>
                <item>
          <title>Re: [Jason] Pull down (multi value) - Get options from database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208272#post2208272</link>
          <description><![CDATA[Hi Jason,<br /><br />I have attached the PHP file that I am working with.<br /><br />The name of the multi-value is 'youtube_video_url'<br /><br />This field then links to a table or section called 'cms_youtube_videos' and has two fields called 'title' and 'youtube_video_id'<br /><br />I am not interested in displaying the title of the youtube videos, just the youtube video id. I was then going to create a for each loop and wrap the video id's into the youtube video embed code.<br /><br />If there is anything else that you need, let me know<br /><br />Kind regards<br /><br />Ryan<br />]]></description>
          <pubDate>Fri, 26 Nov 2010 06:08:44 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208272#post2208272</guid>
        </item>
                <item>
          <title>Re: [Jason] Pull down (multi value) - Get options from database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208225#post2208225</link>
          <description><![CDATA[Hi,<br /><br />Thanks for that, but I'm still having some troubles.<br /><br />Would you be able to provide me with an example page? I'm fairly new to PHP programming, I have searched through other posts to see if I can solve the issue myself, but to no avail.<br /><br />Kind regards<br /><br />Ryan<br />]]></description>
          <pubDate>Wed, 24 Nov 2010 04:37:30 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208225#post2208225</guid>
        </item>
                <item>
          <title>Pull down (multi value) - Get options from database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208172#post2208172</link>
          <description><![CDATA[Hi,<br /><br />Im having some troubles with extracting the multi-value results from on of my fields in the CMSB.<br /><br />Basically I am trying to create a for each loop that for every value in the multi-value pull down it publishes the relevant youtube video. <br /><br />I already have the embed code working for a static video, but need to make it dynamic so the user can add multiple videos to the system. <br /><br />If you know a better way of doing this, or can help me out that would be grand!<br /><br />thanks<br />Ryan<br />]]></description>
          <pubDate>Mon, 22 Nov 2010 05:23:05 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208172#post2208172</guid>
        </item>
              </channel>
    </rss>
  