<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>Using the List box with MySQL</title>
        <link>https://interactivetools.com/forum/forum-posts.php?Using-the-List-box-with-MySQL-70029</link>
        <description></description>
        <pubDate>Tue, 14 Jul 2026 08:21:48 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;Using-the-List-box-with-MySQL-70029" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [kevindrinkall] Using the List box with MySQL</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197386#post2197386</link>
          <description><![CDATA[Hi Kevin<br /><br />Thanks for those screens!  I think I see what you are doing here.  Basically, it's going to be really difficult to get those drop down values changing in the admin interface.  <br /><br />What we could do though is setup a custom script for you that is basically the exact same thing (a form that lets you add records to the database) but because it isn't in the main admin interface, we have the code to handle those drop downs.<br /><br />Because it would be a custom job, we'll need to go through consulting@interactivetools.com. Drop me and email and we'll go over it in more detail.<br /><br />Thanks!<br />]]></description>
          <pubDate>Fri, 15 May 2009 12:46:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197386#post2197386</guid>
        </item>
                <item>
          <title>Re: [kevindrinkall] Using the List box with MySQL</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197342#post2197342</link>
          <description><![CDATA[Hi there.<br /><br />This might end up being more than we can handle in a forum post but for the time being, could you put up a link to the page you are working on with this? I'd like to see have you have it setup so far,<br /><br />Thanks :)<br />]]></description>
          <pubDate>Wed, 13 May 2009 12:21:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197342#post2197342</guid>
        </item>
                <item>
          <title>Re: [Damon] Using the List box with MySQL</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197329#post2197329</link>
          <description><![CDATA[[font &quot;Calibri&quot;]<font size="3">Ok maybe I need another type of example there are a few areas in which I need to do this so maybe giving another example maybe easier.<br /><br />Ok I have a table called: equipment type this has the fields: make, model and type<br /><br />[img]http://www.vixsoft.com/helpmeplease/equipment-type.jpg[/img]<br /><br />make is the manufacture e.g. ZyXEL, Cisco or HP etc. Model is the actual model number and type is what the item is e.g. Router, Firewall, Server etc.<br /><br />ok so let’s say I add: <br />make = cisco<br />model = 877<br />type = router<br /></font></span> <br /><br />[font &quot;Calibri&quot;]<font size="3">[img]http://www.vixsoft.com/helpmeplease/equipmenttypeoptions.jpg[/img] <br /><br /><br /><br /> next section:<br /><br />I have a table called clients_equipment I have added  3 list box’s based on the fields from the table above (equipment_type)<br /><br />what I want to be able to do is select <b>type</b> and then <b>make</b> and for the list for make to dynamically update to only display items that have router in the <b>type</b> and then for the model list box to update to only show the items that have both the make and type matching</font></span> <br /><br />[font &quot;Calibri&quot;]<font size="3">e.g. I select <b>Router</b> from the <b>type</b> list box and the list box will then display ZyXEL and Cisco (as they have been set with Router in the field: type in the table equipment_type) I select  Cisco from the make list box (as this has been set in the make field within the table equipment_type) and then the model should only display 877 <br /><br />Type &gt; Make &gt; Model <br />Router &gt; Cisco &gt; 877<br /><br />Type &gt; Make &gt; Model<br />Firewall &gt; ZyXEL &gt; USG100, USG200, USG300 </font></span> <br /><br /> <br />[img]http://www.vixsoft.com/helpmeplease/clientsequipment.jpg[/img]<br /><br /><br />Hope this is clearer than before. somtimes its very difficult to discribe what you are trying to achive.<br /><br />Many thanks kevin<br />]]></description>
          <pubDate>Wed, 13 May 2009 11:07:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197329#post2197329</guid>
        </item>
                <item>
          <title>Re: [kevindrinkall] Using the List box with MySQL</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197321#post2197321</link>
          <description><![CDATA[Hi Kevin,<br /><br />I think I'm going to need some more details on this one.<br /><br />&gt;how do I get the branch box to query the database and only display the braches listed with the same client name (from field client name) ?<br /><br />Are talking about when you are entering records in the Fullinfo section?<br /><br />Also, are you wanting to choose an clients name, from the dropdown list, and then have the Branch dropdown dynamically update to show only branch with that client?   <br /><br />Can give some examples? Even with made up data would hopefully help make it more clear how this should work. <br /><br />Sorry, I'm just having trouble getting my head wrapped around what you are after.<br />]]></description>
          <pubDate>Tue, 12 May 2009 17:33:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197321#post2197321</guid>
        </item>
                <item>
          <title>Using the List box with MySQL</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197285#post2197285</link>
          <description><![CDATA[I have created a table called ‘client’ and within that table I have 2 fields’ called ‘client_name’ and ‘branch’.<br /> I have then created another table called ‘fullinfo’ I have created a list box based on the field ‘client_name’ and I have created another list box based on ‘branch’ <br /><br />how do I get the branch box to query the database and  only display the braches listed with the same client name (from field client name) ?<br /><br />should be an easy one I would say but I must be looking at this all the wrong way<br /><br />If anyone has any ideas<br /><br />Cheers<br />]]></description>
          <pubDate>Sun, 10 May 2009 13:48:27 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197285#post2197285</guid>
        </item>
              </channel>
    </rss>
  