<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>Pulling in titles to create sub navigation</title>
        <link>https://interactivetools.com/forum/forum-posts.php?Pulling-in-titles-to-create-sub-navigation-72572</link>
        <description></description>
        <pubDate>Mon, 15 Jun 2026 00:47:04 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;Pulling-in-titles-to-create-sub-navigation-72572" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Jason] Pulling in titles to create sub navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2211361#post2211361</link>
          <description><![CDATA[Brilliant, just what I needed! Thank you [:)]<br />]]></description>
          <pubDate>Wed, 18 May 2011 03:59:59 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2211361#post2211361</guid>
        </item>
                <item>
          <title>Re: [Kittybiccy] Pulling in titles to create sub navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2211348#post2211348</link>
          <description><![CDATA[Hi,<br /><br />I assume that in addition to showing all the titles, you also want to display the details of a given selection.  Is that right?<br /><br />If so, what you can do is have 2 queries: 1 that returns just the selected record, and 1 that returns all of the records.<br /><br />For example:<br /><br /><code>// get Detail Record<br />list($residentialDetailRecord, $residentialDetailMetaData) = getRecords(array( <br />  'tableName' =&gt; 'residential', <br />  'where'     =&gt; whereRecordNumberInUrl(), <br />)); <br /> <br />$residentialDetail = @$residentialDetailRecord[0]; // get first record<br /><br />// get all records from section<br />list($residentialRecords, $residentialMetaData) = getRecords(array( <br />  'tableName'   =&gt; 'residential', <br />  'allowSearch' =&gt; false,<br />));</code><br /><br />In this example, you have the variable $residentialDetail that is the individual record that was selected, and $residentialRecords that is all the records in your &quot;residential&quot; section.<br /><br />Hope this helps.<br />]]></description>
          <pubDate>Tue, 17 May 2011 11:30:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2211348#post2211348</guid>
        </item>
                <item>
          <title>Re: [Jason] Pulling in titles to create sub navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2211347#post2211347</link>
          <description><![CDATA[Hi Jason,<br /><br />Thanks, I had tried that before but when you then go into a detail page it only displays <i>that</i> record title in the sub navigation:<br />http://domain3318720.sites.fasthosts.com/portfolio_residentialList.php<br /><br />I need it to display all of the record titles for that section on each detail page as it does on the list page. Is that possible? Thanks!<br />]]></description>
          <pubDate>Tue, 17 May 2011 04:32:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2211347#post2211347</guid>
        </item>
                <item>
          <title>Re: [Kittybiccy] Pulling in titles to create sub navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2211335#post2211335</link>
          <description><![CDATA[Hi,<br /><br />I took a look at your page, and what's happening is your showing the same record for each detail page.  To show the correct record for each page, try this:<br /><br /><code>// load records<br />list($residentialRecords, $residentialMetaData) = getRecords(array(<br />  'tableName' =&gt; 'residential',<br />  'where'     =&gt; whereRecordNumberInUrl(),<br />));<br /><br />$residentialRecord = @$residentialRecords[0]; // get first record</code><br /><br />Is that closer to what you're looking for?<br />]]></description>
          <pubDate>Mon, 16 May 2011 11:47:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2211335#post2211335</guid>
        </item>
                <item>
          <title>Pulling in titles to create sub navigation</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2211330#post2211330</link>
          <description><![CDATA[I've got my site pulling in titles to create a sub navigation. This seems to be working fine in some sections but in the 'portfolio' section on the detail pages it pulls in the records fine as navigation but then displays only the fist entry on every detail page within that section. <br /><br />I guess this is due to this bit :<br />  // load records<br />  list($residentialRecords, $residentialMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'residential',<br />  ));<br />  $residentialRecord = @$residentialRecords[0]; // get first record<br /><br />Any ideas how I need to change the code to display all records on each's relevant page? Here is the link to the test site: http://domain3318720.sites.fasthosts.com/portfolio_residentialList.php It's displaying record one on every detail page.<br /><br />Thanks in advance guys! [:)]<br />]]></description>
          <pubDate>Mon, 16 May 2011 06:16:34 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2211330#post2211330</guid>
        </item>
              </channel>
    </rss>
  