<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>List Radio Butons</title>
        <link>https://interactivetools.com/forum/forum-posts.php?List-Radio-Butons-82429</link>
        <description></description>
        <pubDate>Wed, 20 May 2026 04:04:06 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;List-Radio-Butons-82429" rel="self" type="application/rss+xml" />

                <item>
          <title>List Radio Butons</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245561#post2245561</link>
          <description><![CDATA[<p>Hi MercerDesign,</p>
<p>If you're using a typical generated details page that has a getRecords that looks like this:</p>
<pre class="language-php"><code>  // load record from 'category'
  list($categoryRecords, $categoryMetaData) = getRecords(array(
    'tableName'   =&gt; 'category',
    'where'       =&gt; whereRecordNumberInUrl(0),
    'loadUploads' =&gt; true,
    'allowSearch' =&gt; false,
    'limit'       =&gt; '1',
  ));
  $categoryRecord = @$categoryRecords[0]; // get first record
  if (!$categoryRecord) { dieWith404("Record not found!"); } // show error message if no record found</code></pre>
<p>You could then use something like this to get projects from that category:</p>
<pre class="language-php"><code>    // load records from 'project'
    list($projectRecords, $projectMetaData) = getRecords(array(
        'tableName'   =&gt; 'project',
        'loadUploads' =&gt; true,
        'allowSearch' =&gt; false,
        'where'       =&gt; mysql_escapef('categoryNum = ?', getLastNumberInUrl()),
    ));</code></pre>
<p>The important portion is the 'where' option; you'll need to update "categoryNum" to be the category field in your project section. You'll also need to modify any other table/field names to suit your actual sections.</p>
<p>Let me know how you're able to get on with that, or if you have any other questions!</p>
<p>Thanks,</p>]]></description>
          <pubDate>Mon, 14 Jun 2021 16:19:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245561#post2245561</guid>
        </item>
                <item>
          <title>List Radio Butons</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245526#post2245526</link>
          <description><![CDATA[<p>Hi, I have a multi record page which lists categories, then on the detail page for a category I've got the category title and content text, then below that I have another multi record list of projects. I have setup a list with radio buttons so you can select which category the project needs to be in. So how do I tell the category detail page to only show projects for that category. I'd done this before using single radio buttons on seperate pages but this needs to work on the generated detail page.</p>
<p>Thank you in advance.</p>]]></description>
          <pubDate>Thu, 20 May 2021 04:42:05 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245526#post2245526</guid>
        </item>
              </channel>
    </rss>
  