<?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%3Akeith_s</link>
        <description></description>
        <pubDate>Fri, 17 Apr 2026 15:00:41 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Akeith_s&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Search Types in Section Editors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232031#post2232031</link>
          <description><![CDATA[<p>Where is the information on Search Types that appear in the Section Editors? The editor states that more information can be found in the docs, but I can't find it.</p>]]></description>
          <pubDate>Fri, 04 Oct 2013 11:00:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232031#post2232031</guid>
        </item>
                <item>
          <title>Re: [Tom P] Listing ALL records after search</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2214518#post2214518</link>
          <description><![CDATA[Thanks, Tom. Works Great! <br /><br />I actually had done exactly what you suggested earlier except that I had not added the allowSearch parameter and set it to &quot;false&quot;.  That was all that I was missing.<br /><br />Here is what I wound up adding:<br /><br /><code>  list($listingDDRecords, $listingDDDetails) = getRecords(array(<br />    'tableName'   =&gt; 'listings',<br />	'allowSearch'      =&gt; false, <br />	'loadCreatedBy'  =&gt; false, <br />	'loadUploads'      =&gt; false, <br />  ));</code><br /><br />The critical part is the allowSearch parameter! Thanks for replying to my post so quickly. I should be launching their site very soon. It's really coming together nicely.<br />]]></description>
          <pubDate>Tue, 27 Dec 2011 15:08:37 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2214518#post2214518</guid>
        </item>
                <item>
          <title>Listing ALL records after search</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2214512#post2214512</link>
          <description><![CDATA[I am trying to create a page that has a search form on it to search records (listings) on a CMS Builder powered realty website. Everything works great except for one thing. My dropdowns are auto-populated from fields in the &quot;listings&quot; DB table. The problem is that after a search, the page (which still has a search form on the left side of the page) now only shows the drop down values that pertain to the result returned from the previous search.<br /><br />I want ALL applicable field records to be shown in the search form drop down menus ALWAYS, regardless of a previous search. For example, there is a &quot;county&quot; dropdown field that should always show all unique counties from that exist in the current listings. As I said, it works great until you perform the first search, then the dropdowns narrow themselves so that they are pulled from the set of the returned results.<br /><br />How do I force what I am wanting without messing up the returned results that should be shown to the viewer normally?<br /><br />Thanks,<br />Keith D Sellars<br />WebGraffix Media Solutions, LLC<br /><a target="_blank" href="http://www.webgraffix.com">http://www.webgraffix.com</a>]]></description>
          <pubDate>Tue, 27 Dec 2011 11:48:05 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2214512#post2214512</guid>
        </item>
                <item>
          <title>Nesting  multi records?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213078#post2213078</link>
          <description><![CDATA[I have created a multi-record editor. I would like to create the ability to add another multi-record function inside of the editor. What I want to do is allow a user to add bullets to a field and then drag and sort as necessary. Is this possible?<br /><br />Here's my exact situation:<br />1 - I created a Multi-record editor titled &quot;Jobs&quot;.<br />2 - One of the fields is titled &quot;Education and Experience&quot;.<br />3 - I would like to user to add bullets, one by one, until they add as many or few as they want. Ideally, the user would also be able to drag and drop to sort the list as necessary. <br />4 - I can format the output in php with whatever custom code is needed for the resultant html.<br />5 - The &quot;Education and Experience&quot; bulletted list would be different for almost every job that is posted.<br /><br />Again, is it possible to do what I'm asking?<br /><br />Thanks in advance,<br />Keith D Sellars<br />WebGraffix Media Solutions, LLC<br /><a target="_blank" href="http://www.webgraffix.com">http://www.webgraffix.com</a><br />]]></description>
          <pubDate>Thu, 08 Sep 2011 15:01:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213078#post2213078</guid>
        </item>
                <item>
          <title>Re: [zip222] Total records</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206488#post2206488</link>
          <description><![CDATA[Thanks. I had JUST figured that out:<br /><br /><code>'orderBy'     =&gt; 'RAND()',</code><br /><br />... much appreciated for the quick reply.<br /><br />You original answer will help me out in the future as well, I am sure.<br /><br />Thanks again,<br />Keith D Sellars<br />]]></description>
          <pubDate>Tue, 31 Aug 2010 15:15:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206488#post2206488</guid>
        </item>
                <item>
          <title>Total records</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206484#post2206484</link>
          <description><![CDATA[How do I determine the total number of records through the section viewer code? I am using a php random number generator function to pull a number at random within a certain range of numbers. <br /><br />What I want to do is this: <br />The php function I'm using is:<br /><code>$random = rand(1, 5);</code><br />... but as you can see, the 5 in this case has to be the max number of existing records.  Therefore, I need to determine what the number of records is, in a variable, so that I can pass it to this function.<br /><br />I think I use the getRecords function for CMS, but am not sure exactly how to do that (or if that is what I even need to use).<br /><br />How do I get this &quot;total records&quot; value, OR if there is a simpler way to grab a record at random in the header code, how do I do that?<br /><br />Thanks in advance,<br />Keith D Sellars<br />]]></description>
          <pubDate>Tue, 31 Aug 2010 14:57:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206484#post2206484</guid>
        </item>
                <item>
          <title>Re: [Jason] Auto templates</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205966#post2205966</link>
          <description><![CDATA[Jason,<br /><br />I actually had already implemented one of your solutions partially. I did indeed create a dropdown from the Staff page.  However, the issue that I had was not all of the Staff members were set up as &quot;users&quot;.  As a result, what I wound up doing was setting up user accounts with the exact same name as what exists for the staff members.  This was what I had to do in order to pull in the createdBy field as well as all of the information located on the staff page (name, phone, email, etc.).<br /><br />I know what I did is not the truest way that it should be done, but it works. If I do another car dealership in the future, I would prefer to get you to help me get the code be the cleanest it can be.  There are one or 2 things that I didn't do because of this issue, but they were minor things that didn't really matter.<br /><br />Overall, I'm very pleased with the result - <a target="_blank" href="http://www.southwindford.com">http://www.southwindford.com</a>. My main reason for posting this was to let you guys know that I think the templates themselves need some slight modification so that they work completely as they should &quot;out of the box&quot;.<br />]]></description>
          <pubDate>Wed, 11 Aug 2010 10:43:26 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205966#post2205966</guid>
        </item>
                <item>
          <title>Auto templates</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205938#post2205938</link>
          <description><![CDATA[I purchased the Auto templates last week and have designed a website using them (with the CMS software).<br /><br />We just launched the website, <a target="_blank" href="http://www.southwindford.com">http://www.southwindford.com</a>.<br /><br />During the design, the website owner alerted me of a problem. The &quot;listed by&quot; field in the &quot;listings.php&quot;  and &quot;ListingsDetail.php&quot; files weren't pulling in the person's name that created the listing, but rather were pulling in the last person listed on the Home Pages editor (I've renamed my editor to &quot;Staff&quot;).<br /><br />Looking into the code, I saw that there was no mechanism that ties listings to staff, or even to the &quot;user&quot;, on either of these pages.  I believe this is a flaw in the template. Can you please confirm this to me?<br /><br />I believe that there needs to be some sort of modification, possibly to the &quot;listings&quot; table that allows the person making a new listing to select the desired person from the Home Pages (staff, in my case), table.<br /> <br />It will probably be somewhat simple for you guys to do, but for me, when &quot;joins&quot; are included in the mysql queries, I get lost.<br /><br />I programmed some work-arounds for this, but am not completely happy with the way I &quot;fixed&quot; it.<br /><br />Would you please look into this and if you confirm what I'm saying, let me know what the corrections are either by posting them here or sending updated files?<br /><br />Thanks,<br />Keith D Sellars<br />WebGraffix Media Solutions, LLC<br />]]></description>
          <pubDate>Tue, 10 Aug 2010 12:04:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205938#post2205938</guid>
        </item>
                <item>
          <title>Re: [webgfx] Search Form Basics</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205847#post2205847</link>
          <description><![CDATA[Never mind guys. I looked at the online documentation at <a target="_blank" href="http://www.interactivetools.com/docs/cmsbuilder/viewer_search.html">http://www.interactivetools.com/docs/cmsbuilder/viewer_search.html</a> and it helped me get everything I needed.<br /><br />Works great!<br />]]></description>
          <pubDate>Fri, 06 Aug 2010 09:49:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205847#post2205847</guid>
        </item>
                <item>
          <title>Search Form Basics</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2205846#post2205846</link>
          <description><![CDATA[I am working on a very simple form at <a target="_blank" href="http://www.southwindford.com/index.php">http://www.southwindford.com/index.php</a>. The page that it should post to is <br /><a target="_blank" href="http://www.southwindford.com/all_vehicle_listings.php">http://www.southwindford.com/all_vehicle_listings.php</a>. <br /><br />There are 4 fields on my form - 2 radio buttons and 2 dropdown boxes. For some reason, the form is simply not working. Can you tell me what the basics of the search form are? <br /><br />FYI, the radio buttons search a field called &quot;condition&quot; which is a dropdown field on the &quot;listings&quot; section editor. The only 2 options for the &quot;condition&quot; field are either &quot;New&quot; or &quot;Used&quot;.<br /><br />One text field is titled &quot;year&quot;, and is a dropdown field on the &quot;listings&quot; editor.<br /><br />The second text field is titled &quot;category_name&quot;. It also exists as a field on the &quot;listings&quot; editor, but is created by the &quot;get options from database&quot; feature. (It is ultimately a field in a table named &quot;vehicle_category&quot;).<br /><br />The form returns empty results no matter what is posted. I want it to return only results that match all conditions (new or used, year, and vehicle category). What do I need to do to make this work?<br />]]></description>
          <pubDate>Fri, 06 Aug 2010 09:07:34 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2205846#post2205846</guid>
        </item>
                <item>
          <title>Re: [Donna] Advanced Menu dynamic description missing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202863#post2202863</link>
          <description><![CDATA[Thanks, Donna.  That seemed to do it.  I cleared the cache per your instructions, restarted Firefox and everything seems to be working just as it should.  Thank you very much!!!<br />]]></description>
          <pubDate>Tue, 30 Mar 2010 09:21:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202863#post2202863</guid>
        </item>
                <item>
          <title>Multiple dynamic category levels</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202850#post2202850</link>
          <description><![CDATA[I need to be able to create a set of categories which can be accessed in a dropdown menu when the CMS user adds items (products in this case), to their database. I know how to do this, but I also need to be able to create a set of subcategories as well, which are also accessible in a dropdown list. I wouldn't mind if they were all on the same list as long as they were grouped by their parent category. <br /><br />Ideally, it would be a dynamic javascript driven list which would populate itself based on their selection of categories.<br /><br />How would I accomplish this?  To see where I'm going with this, take a look at <a target="_blank" href="http://www.sharberoil.com/products_services.php">http://www.sharberoil.com/products_services.php</a>.  The product subcategories, for instance, are things like BF Goodrich, Cooper Tires, etc.<br /><br />When I get through, this text will link to a page showing a list of products that are all related.  The user will then be able to click onto a product to see detailed information, including a photo, description, etc.<br /><br />How would I go about this? Any insight would be greatly appreciated.<br />]]></description>
          <pubDate>Mon, 29 Mar 2010 17:49:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202850#post2202850</guid>
        </item>
                <item>
          <title>Re: [Jason] Advanced Menu dynamic description missing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202840#post2202840</link>
          <description><![CDATA[OK, just figured out a little bit more for you. I did what you suggested (reloading the file).  Didn't have any effect.  However, I tried it it Internet Explorer 8 and it works fine. It just doesn't work in FireFox 3.5.8.<br /><br />Also, I think I found another minor issue.  The General Settings page kept asking me for a Website Root Directory.  After some investigation, I discovered that the variable &quot;webRootDir&quot; was not in the default settings.dat.php file at all. I created it and it works fine, but wanted to let you know in case it wasn't related to my upgrade.<br />]]></description>
          <pubDate>Mon, 29 Mar 2010 16:35:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202840#post2202840</guid>
        </item>
                <item>
          <title>Advanced Menu dynamic description missing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202826#post2202826</link>
          <description><![CDATA[I just upgraded a CMSB installation to version 2.03.  Everything seems OK, except that if I want to add a new section editor, the description for the &quot;advanced menu types&quot; is missing. I have a different  site that uses version 2.01 and it works fine. <br /><br />I've tried to troubleshoot it and I see in the lib/menus/database/addTable_functions.js file, the very last function should be handling this, but all I see is &quot;...&quot; where the description should be in the editor.  No matter if I select anything or not, the description never appears.<br /><br />Somewhere I ran across a reference to a bug fix for this, but can't locate it anymore.<br /><br />Can you help me out please?<br />]]></description>
          <pubDate>Mon, 29 Mar 2010 15:32:24 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202826#post2202826</guid>
        </item>
                <item>
          <title>Entering multiple records at once</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200413#post2200413</link>
          <description><![CDATA[I have set up a section editor that allows rows of data to be entered with each row containing about 10 columns (or fields).  This is numerical data for a client. <br /><br />The section editor is a multi-record type.  The issue that I've run into is that when entering records, only 1 record can be entered at a time. This, of course, is not normally a problem since it is the standard way of entering data manually.  Each record can be thought of as simply a row of numerical data in different columns.  Is there any way possible to enter several new records (&quot;rows&quot;) at once before &quot;saving&quot;, like, for instance, MS Excel would allow you to do?<br /><br />It would really save my client quite a bit of time entering data, but I think what I'm wanting to do is not possible realistically, but thought I'd ask.<br /><br />Thanks,<br />Keith D Sellars<br />WebGraffix Media Solutions, LLC<br /><a target="_blank" href="http://www.webgraffix.com">http://www.webgraffix.com</a><br />]]></description>
          <pubDate>Fri, 27 Nov 2009 12:08:23 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200413#post2200413</guid>
        </item>
                <item>
          <title>Re: [Dave] Searching for multiple keywords in multiple fields</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200324#post2200324</link>
          <description><![CDATA[THANK YOU GUYS!!!  The latest suggestion worked great although I had another issue to deal with that it caused. When I inserted the new &quot;input&quot; name values for the form submission (as suggested), I ran into a problem with the fact that I am passing category names to the page via the URL. I corrected that issue and everything works perfectly now with the direct links as well as the search function.<br /><br />[:)]<br />Keith D Sellars<br />WebGraffix Media Solutions<br /><a target="_blank" href="www.webgraffix.com">www.webgraffix.com</a><br />]]></description>
          <pubDate>Thu, 19 Nov 2009 08:33:39 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200324#post2200324</guid>
        </item>
                <item>
          <title>Re: [chris] Searching for multiple keywords in multiple fields</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200233#post2200233</link>
          <description><![CDATA[Chris, the link method that Dave posted works (ie, <a target="_blank" href="http://www.bainbridgegachamber.com/membersSearch.php?name,notes_query=bruce mann">http://www.bainbridgegachamber.com/membersSearch.php?name,notes_query=bruce mann</a>, but not the method using the form submission that you posted.<br /><br />For instance, one listing has the following in its &quot;notes&quot; field:<br /> - Offers accounting services, businesses and individuals.<br /><br />The &quot;name&quot; field for this listing contains the following:<br />Bruce D. Mann, CPA<br /><br />If I search for any multiple word term in which the words are not in the exact order, then the query returns a blank result.  How do I get Dave's results, but using a search form like I am using?<br /><br />Again, the URL is: <br /><a target="_blank" href="http://www.bainbridgegachamber.com/membershipListingsNEW.php">http://www.bainbridgegachamber.com/membershipListingsNEW.php</a><br /><br />The &quot;accounting&quot; and &quot;Air Conditioning and Heating&quot; categories are the best to use for testing purposes since they contain notes and have multiple listings in each category.<br /><br />We're close to what I need.  What do I need to do in order to get it exactly right using the form to allow for the search rather than a direct link? <br /><br />Thanks,<br />Keith D Sellars<br /><a target="_blank" href="http://www.webgraffix.com">http://www.webgraffix.com</a><br />]]></description>
          <pubDate>Fri, 13 Nov 2009 16:54:40 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200233#post2200233</guid>
        </item>
                <item>
          <title>Searching for multiple keywords in multiple fields</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200143#post2200143</link>
          <description><![CDATA[I have a list viewer that shows a list of member categories for a Chamber of Commerce (<a target="_blank" href="http://www.bainbridgegachamber.com/members.php">http://www.bainbridgegachamber.com/members.php</a>).  Each category can then have multiple member listings, each of which contains 5 or 6 different fields.  The member category page also has a search function.<br /><br />I want the search function to show results if ALL of the keywords typed into the search field exist regardless of the order.  I want 2 fields searched - name &amp; notes_keyword.<br /><br />Currently, unless there is an exact match of words in the search field (in the exact order), it won't return anything.  For instance, I can search for &quot;accounting services, businesses&quot; and it returns results, but if I search for &quot; businesses, accounting services&quot;, it returns no results.<br /><br />I'm assuming I need a custom mysql query in the list viewer. How would I do this?<br />]]></description>
          <pubDate>Mon, 09 Nov 2009 09:07:48 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200143#post2200143</guid>
        </item>
                <item>
          <title>Re: [Dave] Search forms searching multiple fields</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198495#post2198495</link>
          <description><![CDATA[Dave,<br /><br />Works great!  Many thanks!<br /><br />[:)]<br /><br />Keith D Sellars<br />WebGraffix Media Solutions, LLC<br /><a target="_blank" href="http://www.webgraffix.com">http://www.webgraffix.com</a><br />]]></description>
          <pubDate>Mon, 03 Aug 2009 09:31:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198495#post2198495</guid>
        </item>
                <item>
          <title>Re: [Dave] Notice: Announce your new CMS Builder websites here!</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198420#post2198420</link>
          <description><![CDATA[Bainbridge - Decatur Chamber of Commerce - <a target="_blank" href="http://www.bainbridgegachamber.com">http://www.bainbridgegachamber.com</a>.<br /><br />Entire site is editable through CMS Builder. Includes the ability for the site owner to create membership categories and then enter individual member listings which can be assigned to multiple categories at once. I am sorting the member categories and listings so that they display alphabetically regardless of the dragSortOrder in CMS Builder.<br />]]></description>
          <pubDate>Tue, 28 Jul 2009 16:39:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198420#post2198420</guid>
        </item>
                <item>
          <title>Re: [Dave] Notice: Announce your new CMS Builder websites here!</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198419#post2198419</link>
          <description><![CDATA[<b>Albany Motor Speedway - </b><a target="_blank" href="http://www.albanymotorspeedway.net">http://www.albanymotorspeedway.net</a>.<br /><br />All pages on the site are editable through CMS Builder.  The home page only lists the first 10 racers from one of several classes of racers.  Each reload of the page loads a different listing at random.  The coding was very complex for me, but works out well for the website owners because almost the entire website is editable through CMS Builder.<br />]]></description>
          <pubDate>Tue, 28 Jul 2009 16:36:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198419#post2198419</guid>
        </item>
                <item>
          <title>Search forms searching multiple fields</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198418#post2198418</link>
          <description><![CDATA[I have created a categorized membership listing for our local Chamber of Commerce, using CMS Builder.<br /><br />I have a simple search form located at <a target="_blank" href="http://www.bainbridgegachamber.com/membershipListingsNEW.php">http://www.bainbridgegachamber.com/membershipListingsNEW.php</a> that is set to search one field.  I would like it to search 2 different fields at once (a field named &quot;name&quot; and one named &quot;notes&quot;) for the search term entered by the viewer.<br /><br />Is it possible to do this? If so, how?<br />]]></description>
          <pubDate>Tue, 28 Jul 2009 16:32:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198418#post2198418</guid>
        </item>
                <item>
          <title>Personnel records by CMS</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193105#post2193105</link>
          <description><![CDATA[I have a client that needs me to set up CMS that, in addition to doing the standard page editing, also needs to have the ability to create a set of records that will function as a membership directory, complete with names, addresses, phone numbers, and photos.  The membership directory will need to be searchable (by name at least, if not other fields as well) if possible. <br /><br />Also, the client will need me to create a &quot;newsletter&quot; type of feature.  Is it possible for us to create a function that would always display the most current &quot;newsletter&quot;, but would create links to previous versions as well? (basically creating a new record each time they want to publish a new newsletter and archiving the old ones).  <br /><br />I'm pretty sure that CMS will do all of this, but this will be the first time that I've used these features if I land the client, and I want to make sure that either I am able to tackle it or that I have help at hand if needed, free or paid.  I know php fairly well, but am not extremely familiar with this CMS program yet, although it's pretty powerful from what I've seen thus far.<br />]]></description>
          <pubDate>Tue, 26 Aug 2008 09:07:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193105#post2193105</guid>
        </item>
                <item>
          <title>Re: [Dave] Creating/Displaying uploads</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191088#post2191088</link>
          <description><![CDATA[Thanks Dave. I appreciate your quick response and resolution to my question. Turns out that I had apparently created the section correctly, but maybe not actually &quot;saved&quot; it. (something weird like that). Also, the code that I was using wasn't exactly correct. I'm posting what I wound up using below so that others can see how to display the contents of an upload. <br /><br />If you want to see the page in action, visit <a target="_blank" href="http://www.interactivetools.com/forum/forum.cgi?url=http%3A%2F%2Fwww.decaturcountyga.org%2FHuman_Resources.php">http://www.decaturcountyga.org/Human_Resources.php</a> and scroll down to the &quot;Documents&quot; section in the left-hand navigation. I've changed the code below slightly to make the foreach loop create a complete table row for each uploaded file that exists. <br /><br />I am very impressed with this software. Dave, Donna, Luke, and the others are SUPER! One of the best support teams that I've ever run across. This is the same level of service that my company, <a target="_blank" href="http://www.interactivetools.com/forum/forum.cgi?url=http%3A%2F%2Fwww.webgraffix.com">WebGraffix Media Solutions</a>, offers. Keep it up guys! <br /><br />Here's the simple version of the code that Dave sent to me. I've changed the table name and the &quot;require_once&quot; value for the sake of security. I also am using the first info field (info1) as the name of the file to display rather than the actual uploaded name of the file. <br /><br /> <code> [font &quot;Arial&quot;]<font size="1"> <br /> <br />&lt;!-- STEP1: Load Record (Paste this above other step) --&gt; <br />    &lt;?php <br />      require_once &quot;/usr/public/serverpath/admin/cms/lib/viewer_functions.php&quot;; <br />      $options = array();                // NOTE: see online documentation for more details on these options <br />      $options['tableName'] = 'documents'; // (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 <br />                                                      // url, then 1 <br />      $options['where']     = '';           // (ADVANCED) MySQL WHERE conditions to use INSTEAD of recordNum to look up <br />                                                     // record. Example: &quot;fieldname = 'value'&quot; <br />      $record = getRecord($options); <br />    ?&gt; <br />  &lt;!-- /STEP1: Load Record --&gt;  <br /> <br /> <br /> <br /> &lt;!-- STEP2: Display Record (Paste this where you want your record displayed and re-arrange fields) --&gt; <br />  &lt;h1&gt;HR Documents Page Viewer&lt;/h1&gt; <br />    &lt;?php if ($record): ?&gt; <br />      Record Number: &lt;?php echo $record['num'] ?&gt;&lt;br/&gt; <br />    &lt;?php endif ?&gt; <br /> <br />    &lt;?php if (empty($record)): ?&gt;&lt;!-- Display &quot;No Records Found&quot; Message --&gt; <br />      No record found!&lt;br/&gt;&lt;br/&gt; <br />    &lt;?php endif ?&gt; <br />  &lt;!-- STEP2: /Display Record --&gt; <br /> <br /> <br /> <br /> <br />  &lt;!-- STEP3: Display Uploads from 'documentlist' (Paste this where you want your uploads displayed) --&gt; <br />    &lt;!-- Upload Program Fields : num, createdTime, tableName, fieldName, recordNum, preSaveTempId, filePath, <br />      filename, extension, thumbFilePath --&gt; <br />    &lt;!-- Upload Image Fields   : isImage, hasThumbnail, urlPath, width, height, thumbUrlPath, thumbWidth, thumbHeight --&gt; <br />    &lt;!-- Upload Info Fields    : info1, info2, info3, info4, info5 --&gt; <br />    &lt;?php if ($record): ?&gt; <br /> &lt;?php foreach (getUploads($options['tableName'], 'documentlist', $record['num']) as $upload): ?&gt; <br />      &lt;?php if ($upload['hasThumbnail']): ?&gt; <br />        &lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['thumbWidth'] ?&gt;&quot; <br />        height=&quot;&lt;?php echo $upload['thumbHeight'] ?&gt;&quot; alt=&quot;&quot; /&gt;&lt;br/&gt; <br /> <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; <br />        alt=&quot;&quot; /&gt;&lt;br/&gt; <br /> <br />      &lt;?php else: ?&gt; <br />        &lt;a href=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot;&gt;Download &lt;?php echo $upload['info1'] ?&gt;&lt;/a&gt;&lt;br/&gt; <br /> <br />      &lt;?php endif ?&gt; <br />    &lt;?php endforeach ?&gt; <br />    &lt;?php endif ?&gt; <br />  &lt;!-- STEP3: /Display Uploads from 'documentlist' --&gt;</font></span> </code><br />Again, thanks Dave!!<br />]]></description>
          <pubDate>Fri, 04 Apr 2008 11:32:11 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191088#post2191088</guid>
        </item>
                <item>
          <title>User account email?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191084#post2191084</link>
          <description><![CDATA[What is the user's account email for?  I haven't been able to find anywhere that makes use of this field.  I thought that maybe there would be a &quot;forgot password&quot; feature, but there's not one. <br /><br />The field is required though and also prevents duplicates from being added.  Is there anywhere that this field is used?<br />]]></description>
          <pubDate>Fri, 04 Apr 2008 11:18:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191084#post2191084</guid>
        </item>
              </channel>
    </rss>
  