Multiple repeat regions on same page from different DB?How

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Multiple repeat regions on same page from different DB?How

    I need to use two repeat regions on same page. Problem is, the data is being
    pulled from different
    databases?
    I uunderstand the tables have to be related for this to work.
    Anyone know of any workaround or how to make this work?
    Thanks
    assigned

    logic Guest

  2. Similar Questions and Discussions

    1. Repeat regions not working in Contribute
      I've got a problem with repeat regions inside templated pages. When in contribute, I can't seem to add a new repeat region by clicking on the plus...
    2. Nested Repeat Regions
      I am using the MX Looper for my Nested Repeated Region, which works well but, where I have data in the child table, the master table is show multpl...
    3. css and repeat regions
      Can anyone offer advice/link on how I can change text formatting and background color using inline css and PHP? Currently I'm using a repeat...
    4. REPEAT regions with LIMIT
      hi, i am working with the Dreamweaver Repeat region. I want to pull 100 record from a query and then view them 10 at the time (10 per page). the...
    5. URL parameter and repeat regions
      has anyone got an idea why when i do a URL parameter to return records containing a certain word from a record and go to a detail page it works fine...
  3. #2

    Default Re: Multiple repeat regions on same page from different DB? How

    You might want to look at Tom Muck's Nested Recordset extension.

    --
    Jules
    [url]http://www.charon.co.uk/charoncart[/url]
    Charon Cart 3
    Shopping Cart Extension for Dreamweaver MX/MX 2004



    Julian Roberts Guest

  4. #3

    Default Re: Multiple repeat regions on same page from different DB? How

    On 10 May 2005 in macromedia.dreamweaver.appdev, logic wrote:
    > I need to use two repeat regions on same page. Problem is, the data
    > is being pulled from different databases? I uunderstand the tables
    > have to be related for this to work. Anyone know of any workaround
    > or how to make this work?
    You mean two separate repeat regions?

    <body>
    <div id="nav">
    <!-- Nav goes here -->
    </div>
    <div id="first">
    <!-- First recordset -->
    <table>
    <!-- Repeat region here -->
    </table>
    </div>
    <div id="second">
    <!-- Second recordset -->
    <table>
    <!-- Repeat region here -->
    </table>
    </div>
    </body>

    Not a problem (assuming, of course, that the server can handle it);
    just create and use a second recordset. In fact, I just looked at a
    page where I draw data from three separate databases.

    --
    Joe Makowiec
    [url]http://makowiec.net/[/url]
    Email: [url]http://makowiec.net/email.php[/url]
    Joe Makowiec Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139