sorry ... that may be a DWMX thing. A repeat region is a dynamic set of results based on a variable. I've got a shopping cart that I'm working on. I want to dump the results into a db table (orders). I can only get the first product placed into the db. I want it to look like a receipt page that I created that lists all the items in the cart. The products from the cart are listed as a repeat region. So I'm wondering if I can convert that into one string. Sorry. Thanx.
<?php do { ?>
<?php echo $row_Recordset1['one']; ?>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
That script produces the results:
onetwothreefour
If I set it up correctly it should look like:
one
two
three
four
what I want to do is take that info and insert it into my db as one, two, three, four. Because of the loop I'm not sure how to do this.